home *** CD-ROM | disk | FTP | other *** search
/ Revista CD Expert 8 / Revista CD Expert nº 08 CD1.iso / Utilitarios / Programacao / MS-DOS Interrupt List / inter60d / CMOS.LST < prev    next >
File List  |  1999-01-03  |  76KB  |  1,989 lines

  1. CMOS-Memory Map            Release 60        Last change 03jan99
  2.  
  3. Compiled from multiple sources by Padgett Peterson
  4. Corrections/additions/comments to: padgett@tccslr.dnet.mmc.com
  5.  
  6. No guarantees of any kind.
  7.  
  8. Copyrights/Trademarks belong to whoever they may belong to.
  9.  
  10. Found: Algorithm used by IBM in calculating CRC checksums for PS/2
  11.        (see bytes 32h-33h). Complex (recursive part is 12 lines of
  12.        assembly) and not yet validated for every model.
  13. --------!---Note-----------------------------
  14.             Background
  15.  
  16. The CMOS (complementary metal oxide semiconductor) memory is actually 
  17. a 64 or 128 byte battery-backed RAM memory module that is a part of the 
  18. system clock chip. Some IBM PS/2 models have the capability for a
  19. 2k (2048 byte) CMOS ROM Extension.
  20.  
  21. First used with clock-calender cards for the IBM PC-XT, when the PC/AT
  22. (Advanced Technology) was introduced in 1985, the Motorola MC146818 
  23. became a part of the motherboard. Since the clock only uses fourteen of 
  24. the RAM bytes, the rest are available for storing system configuration data.
  25.  
  26. Interestingly, the original IBM-PC/AT (Advanced Technology) standard for 
  27. the region 10h-3Fh is nearly universal with one notable exception: The 
  28. IBM PS/2 systems deviate considerably (Note: AMSTRAD 8086 machines were 
  29. among the first to actively use the CMOS memory available and since they 
  30. *predate* the AT, do not follow the AT standard).
  31.  
  32. This is just another example of how IBM created a standard, lost control 
  33. of it, tried to replace it, failed and lost market share in the process. 
  34.  
  35. Originally, the IBM PC/AT only made use of a small portion of CMOS memory
  36. and was defined in the IBM PC/AT Technical Reference Manual, specifically 
  37. bytes 10h, 12h, 14h-18h, 2Eh-33h. The balance was left undefined but was 
  38. quickly appropriated by various BIOS manufacturers for such user-selectable 
  39. options such as wait states, clock speeds, initial boot drive selection, and 
  40. password storage.
  41.  
  42. Later, as CMOS memory requirements grew, newer clock chips with 128
  43. bytes of RAM came into use. However the fact remains that once the AT 
  44. standard was established, only IBM has tried to change the definitions 
  45. of that first description.
  46.  
  47.             Accessing the CMOS
  48.  
  49. The CMOS memory exists outside of the normal address space and cannot
  50. contain directly executable code. It is reachable through IN and OUT
  51. commands at port number 70h (112d) and 71h (113d). To read a CMOS byte,
  52. an OUT to port 70h is executed with the address of the byte to be read and
  53. an IN from port 71h will then retrieve the requested information. The 
  54. following BASIC fragment will read 128 CMOS bytes and print them to the 
  55. screen in 8 rows of 16 values.
  56.  
  57. The CMOS RAM space has an upper limit of 128 bytes because of the structure
  58. of port 70: only bits 0-6 are used for addressing, bit 7 is used to 
  59. enable (0) or disable (1) Non-Maskable Interrupts (NMI) and explains why
  60. IBM uses 80h OR <address> to read/write data & follows with  a "throw-away"
  61. call.
  62.  
  63. Note that if the CMOS only has 64 bytes available, addressing will 
  64. generally wrap and addresses from 40h-7Fh will mirror 00h-3Fh. Output will 
  65. be hexadecimal.
  66.  
  67. 10 CLS
  68. 20 FOR i = 0 TO &H7F 
  69. 30 OUT &H70, i
  70. 40 PRINT USING "\   \"; HEX$(INP(&H71));
  71. 50 NEXT i
  72. 60 PRINT " " 
  73.  
  74. Note: where not otherwise noted, all data points are expressed as BYTES
  75.       these are eight bit values and are read from MSB to LSB e.g.
  76.       0000 0000        0101 1010 binary would be written as 5Ah
  77.       7654 3210        where only some bits are used this is represented with
  78.             Xs e.g bits 5-3 would be shown as 00xx x000
  79.  
  80. Note: the entries for AMI WinBIOS also apply to AMIBIOS with core dates of 
  81.     12/15/95 or later
  82.  
  83. --------!---Note-----------------------------
  84.         Organization of CMOS Memory - Clock
  85.  
  86. 00h-0Eh is defined by the clock hardware and all must follow it. Other 
  87. manufacturers generally follow the same format as specified for the
  88. region 10h - 2Fh. Some also follow the IBM format for 30h-33h but not all 
  89. (Zenith in particular is different).
  90.  
  91. The first fourteen bytes are dedicated to the MC146818 chip clock functions 
  92. and consist of ten read/write data registers and four status registers, two 
  93. of which are read/write and two of which are read only.
  94.  
  95. The format of the ten clock data registers (bytes 00h-09h) is:
  96.  
  97. ----------R00--------------------------------
  98. CMOS 00h - RTC - SECONDS
  99. Desc:    (BCD 00-59, Hex 00-3B)
  100. Note: Bit 7 is read only    
  101. SeeAlso: CMOS 01h,CMOS 02h,CMOS 04h
  102. ----------R01--------------------------------
  103. CMOS 01h - RTC - SECOND ALARM
  104. Desc:    (BCD 00-59, Hex 00-3B; "don't care" if C0-FF)
  105. SeeAlso: CMOS 00h,CMOS 03h,CMOS 05h,CMOS 7Dh
  106. ----------R02--------------------------------
  107. CMOS 02h - RTC - MINUTES
  108. Desc:    (BCD 00-59, Hex 00-3B)
  109. SeeAlso: CMOS 00h,CMOS 03h,CMOS 04h
  110. ----------R03--------------------------------
  111. CMOS 03h - RTC - MINUTE ALARM
  112. Desc:    (BCD 00-59, Hex 00-3B; "don't care" if C0-FF))    
  113. SeeAlso: CMOS 00h,CMOS 02h,CMOS 05h,CMOS 7Dh,CMOS 7Eh"AMD-645"
  114. ----------R04--------------------------------
  115. CMOS 04h - RTC - HOURS
  116. Desc:    (BCD 00-23, Hex 00-17 if 24 hr mode)
  117.     (BCD 01-12, Hex 01-0C if 12 hr am)
  118.     (BCD 81-92. Hex 81-8C if 12 hr pm)          
  119. SeeAlso: CMOS 00h,CMOS 02h,CMOS 05h
  120. ----------R05--------------------------------
  121. CMOS 05h - RTC - HOUR ALARM
  122. Desc:    (same as hours; "don't care" if C0-FF))        
  123. SeeAlso: CMOS 01h,CMOS 03h,CMOS 04h
  124. ----------R06--------------------------------
  125. CMOS 06h - RTC - DAY OF WEEK
  126. Desc:    (01-07 Sunday=1)    
  127. SeeAlso: CMOS 07h,CMOS 08h,CMOS 09h
  128. ----------R07--------------------------------
  129. CMOS 07h - RTC - DATE OF MONTH
  130. Desc:    (BCD 01-31, Hex 01-1F)
  131. SeeAlso: CMOS 06h,CMOS 08h,CMOS 09h
  132. ----------R08--------------------------------
  133. CMOS 08h - RTC - MONTH
  134. Desc:    (BCD 01-12, Hex 01-0C)      
  135. SeeAlso: CMOS 06h,CMOS 07h,CMOS 09h
  136. ----------R09--------------------------------
  137. CMOS 09h - RTC - YEAR
  138. Desc:    (BCD 00-99, Hex 00-63)      
  139. Notes:    BCD/Hex selection depends on Bit 2 of register B (0Bh)
  140.     12/24 Hr selection depends on Bit 1 of register B (0Bh)
  141.     Alarm will trigger when contents of all three Alarm byte registers
  142.       match their companions.
  143. SeeAlso: CMOS 06h,CMOS 07h,CMOS 08h
  144.  
  145. The following is the on-chip status register information. 
  146.  
  147. ----------R0A--------------------------------
  148. CMOS 0Ah - RTC - STATUS REGISTER A (read/write) (usu 26h)
  149.  
  150. Bitfields for Real-Time Clock status register A:
  151. Bit(s)    Description    (Table C0001)
  152.  7    =1 time update cycle in progress, data ouputs undefined 
  153.     (bit 7 is read only)
  154.  6-4    22 stage divider
  155.     010 = 32768 Hz time base (default)
  156.  3-0    rate selection bits for interrupt
  157.     0000 none
  158.     0011 122 microseconds (minimum)
  159.     1111 500 milliseconds    
  160.     0110 976.562 microseconds (default 1024 Hz)
  161. SeeAlso: #C0002,#C0003,#C0004
  162. ----------R0B--------------------------------
  163. CMOS 0Bh - RTC - STATUS REGISTER B (read/write) 
  164.  
  165. Bitfields for Real-Time Clock status register B:
  166. Bit(s)    Description    (Table C0002)
  167.  7    enable clock setting by freezing updates
  168.  6    enable periodic interrupt
  169.  5    enable alarm interrupt
  170.  4    enable update-ended interrupt
  171.  3    enable square wave output
  172.  2    Data Mode - 0: BCD, 1: Binary
  173.  1    24/12 hour selection - 1 enables 24 hour mode
  174.  0    Daylight Savings Enable
  175.     =1 enables automatic switching to/from DST in April and October
  176. SeeAlso: #C0001,#C0003,#C0004
  177. ----------R0C--------------------------------
  178. CMOS 0Ch - RTC - STATUS REGISTER C (Read only)
  179.  
  180. Bitfields for Real-Time Clock status register C:
  181. Bit(s)    Description    (Table C0003)
  182.  7    Interrupt request flag
  183.     =1 when any or all of bits 6-4 are 1 and appropriate enables
  184.       (Register B) are set to 1. Generates IRQ 8 when triggered.
  185.  6    Periodic Interrupt flag
  186.  5    Alarm Interrupt flag 
  187.  4    Update-Ended Interrupt Flag
  188.  3-0    unused
  189. SeeAlso: #C0001,#C0002,#C0004
  190. ----------R0D--------------------------------
  191. CMOS 0Dh - RTC - STATUS REGISTER D (read only)
  192.  
  193. Bitfields for Real-Time Clock status register D:
  194. Bit(s)    Description    (Table C0004)
  195.  7    Valid RAM - 1 indicates batery power good, 0 if dead or disconnected.
  196.  6-0    unused (0)
  197. --------!---Note-----------------------------
  198.         Organization of CMOS Memory - non-Clock
  199.  
  200. The last two bytes in the first hexadecimal decade (hexade ?) were not 
  201. specified in the PC/AT but may have the following use on some systems:
  202. ----------R0E--------------------------------
  203. CMOS 0Eh  - IBM PS/2 - DIAGNOSTIC STATUS BYTE 
  204.  
  205. Bitfields for IBM PS/2 diagnostic status byte:
  206. Bit(s)    Description    (Table C0005)
  207.  7    indicates clock has lost power
  208.  6    incorrect checksum>
  209.  5    equipment configuration is incorrect
  210.       (power-on check requires that atleast one floppy be installed)
  211.  4    error in memory size
  212.  3    controller or disk drive failed initialization
  213.  2    time is invalid
  214.  1    installed adaptors do not match configuration
  215.  0    time-out while reading adaptor ID
  216. ----------R0E13------------------------------
  217. CMOS 0Eh-13h - AMSTRAD - TIME AND DATE MACHINE LAST USED
  218. ----------R0F--------------------------------
  219. CMOS 0Fh - IBM - RESET CODE (IBM PS/2 "Shutdown Status Byte")
  220.  
  221. (Table C0006)
  222. Values for Reset Code / Shutdown Status Byte:
  223.  00h-03h perform power-on reset
  224.    00h    software reset or unexpected reset
  225.    01h    reset after memory size check in real/virtual mode
  226.     (or: chip set initialization for real mode reentry)
  227.    02h    reset after successful memory test in real/virtual mode
  228.    03h    reset after failed memory test in real/virtual mode
  229.  04h    INT 19h reboot
  230.  05h    flush keyboard (issue EOI) and jump via 40h:0067h
  231.  06h    reset (after successful test in virtual mode)
  232.     (or: jump via 40h:0067h without EOI)
  233.  07h    reset (after failed test in virtual mode)
  234.  08h    used by POST during protected-mode RAM test (return to POST)
  235.  09h    used for INT 15/87h (block move) support
  236.  0Ah    resume execution by jump via 40h:0067h
  237.  0Bh    resume execution via IRET via 40h:0067h
  238.  0Ch    resume execution via RETF via 40h:0067h
  239.  0Dh-FFh perform power-on reset
  240. --------!---Note-----------------------------
  241.  
  242. The second group of values extends from address 10h to 2Dh. The word at
  243. 2Eh-2Fh is a byte-wise summation of the values in these bytes. Most BIOSes
  244. will generate a CMOS Checksum error if this value is invalid however many 
  245. programs ignore the checksum and report the apparent value. The current
  246. version of MSD reports my XT as having 20+ MB of extended memory. 
  247.  
  248. Where a definiton appears universal, no identification is made. Where
  249. the definition is thought to be specific to a manufacturer/model (AMI, 
  250. AMSTRAD, IBM AT, IBM PS/2) the identification is enclosed in parens. The
  251. AMSTAD definitions appear to relate to 8088/8086 (PC and PC/XT class)
  252. mchines only. AT class machines appear to adhere to IBM PC/AT fornat.
  253.  
  254. ----------R10--------------------------------
  255. CMOS 10h - IBM - FLOPPY DRIVE TYPE
  256. Note:    a PC having a 5 1/4 1.2 Mb A: drive and a 1.44 Mb B: drive will
  257.       have a value of 24h in byte 10h. With a single 1.44 drive: 40h.
  258.  
  259. Bitfields for floppy drives A/B types:
  260. Bit(s)    Description    (Table C0007)
  261.  7-4    first floppy disk drive type (see #C0008)
  262.  3-0    second floppy disk drive type (see #C0008)
  263.  
  264. (Table C0008)
  265. Values for floppy drive type:
  266.  00h    no drive
  267.  01h    360 KB 5.25 Drive
  268.  02h    1.2 MB 5.25 Drive - note: not listed in PS/2 technical manual
  269.  03h    720 KB 3.5 Drive
  270.  04h    1.44 MB 3.5 Drive
  271.  05h    2.88 MB 3.5 drive
  272.  06h-0Fh unused
  273. SeeAlso: #C0007
  274. ----------R11--------------------------------
  275. CMOS 11h - IBM PS/2 - FIRST FIXED DISK DRIVE TYPE BYTE (00-FFh)
  276. Note:    if IBM ESDI or SCSI drive controller is used, CMOS drive type will be
  277.       zero (00 - no drive) and INT 13h will be directed to controller ROM.
  278. ----------R11--------------------------------
  279. CMOS 11h - older AMI Hi-Flex BIOS - KEYBOARD TYPEMATIC DATA 
  280.  
  281. Bitfields for AMI Hi-Flex BIOS keyboard typematic data:
  282. Bit(s)    Description    (Table C0009)
  283.  7    enable Typematic
  284.  6-5    Typematic Delay (wait before begin repeating)
  285.     00b 250 ms
  286.     01b 500 ms
  287.     10b 750 ms
  288.     11b 100 ms
  289.  4-0    Typematic Rate (char/sec)
  290.     00000b - 30.0     01000b - 15.9    10000b - 7.5  11000b - 3.7
  291.     00001b - 26.7     01001b - 13.3    10001b - 6.7  11001b - 3.3
  292.     00010b - 24.0     01010b - 12.0    10010b - 6.0  11010b - 3.0
  293.     00011b - 21.8     01011b - 10.9    10011b - 5.5  11011b - 2.7
  294.     00100b - 20.0     01100b - 10.0    10100b - 5.0  11100b - 2.5
  295.     00101b - 18.5     01101b -  9.2    10101b - 4.6  11101b - 2.3
  296.     00110b - 17.1     01110b -  8.6    10110b - 4.3  11110b - 2.1
  297.     00111b - 16.0     01111b -  8.0    10111b - 4.0  11111b - 2.0
  298. ----------R11--------------------------------
  299. CMOS 11h - AMI - ADVANCED SETUP OPTIONS
  300.  
  301. Bitfields for AMI advanced setup options:
  302. Bit(s)    Description    (Table C0010)
  303.  7    mouse enabled
  304.  6    test memory above 1 megabyte
  305.  5    generate clicks during memory test
  306.  4    enable memory parity check
  307.  3    display key for Setup while booting
  308.  2    store user-defined disk data at top of memory instead of 0030h:0000h
  309.  1    request F1 keypress on boot error
  310. ----------R11--------------------------------
  311. CMOS 11h - AMI WinBIOS - BOOT OPTIONS
  312. SeeAlso: CMOS 13h"AMI"
  313.  
  314. Bitfields for AMI WinBIOS boot options:
  315. Bit(s)    Description    (Table C0011)
  316.  7    systems boots with high CPU speed
  317.  6    memory test above 1MB enabled
  318.  5    memory test tick sound enabled
  319.  4    floppy drive seek at boot enabled
  320.  3    "Hit <Del>" message enabled
  321.  2    BIOS extended RAM area takes 1K at top of memory instead of 30h:0000h
  322.  1    wait for F1 key on error
  323.  0    NumLock enabled at boot
  324. ----------R11--------------------------------
  325. CMOS 11h - AWARD - CONFIGURATION BITS
  326. SeeAlso: CMOS 5Eh"AWARD"
  327.  
  328. Bitfields for AWARD configuration bits:
  329. Bit(s)    Description    (Table C0012)
  330.  7    NumLock ON at reboot
  331.  6    IDE Block Mode enabled
  332.  5    ???
  333.  4    Shadow ROM BIOS at CC00-CFFF
  334.  3    Shadow ROM BIOS at C800-CBFF
  335.  2    ???
  336.  1    BIOS Password Enabled (supervisor)
  337.  0    0 = Password controls BIOS Setup Only
  338.     1 = Password required to enter System
  339. SeeAlso: #C0083
  340.  
  341. Code snippet by Jens Rehsack:
  342.    FUNCTION CalcPossiblePassword( PasswordValue: WORD ): STRING[8];
  343.    VAR
  344.         I               :  BYTE;
  345.         C               :  CHAR;
  346.         S               :  STRING[8];
  347.  
  348.    BEGIN
  349.      I := 0;
  350.      WHILE PasswordValue <> 0 DO
  351.      BEGIN
  352.        Inc( I );
  353.        IF $263 > PasswordValue THEN
  354.        BEGIN
  355.      IF $80 > PasswordValue THEN
  356.        S[I] := CHAR( PasswordValue )
  357.      ELSE IF $B0 > PasswordValue THEN
  358.        S[I] := CHAR( PasswordValue AND $77 )
  359.      ELSE IF $11D > PasswordValue THEN
  360.        S[I] := CHAR( $30 OR ( PasswordValue AND $0F ) )
  361.      ELSE IF $114 > PasswordValue THEN
  362.      BEGIN
  363.        S[I] := CHAR( $64 OR ( PasswordValue AND $0F ) );
  364.        IF '0' > S[I] THEN
  365.          S[I] := CHAR( BYTE( S[I] ) + 8 );
  366.      END ELSE IF $1C2 > PasswordValue THEN
  367.        S[I] := CHAR( $70 OR ( PasswordValue AND $03 ) )
  368.      ELSE IF $1E4 > PasswordValue THEN
  369.        S[I] := CHAR( $30 OR ( PasswordValue AND $03 ) )
  370.      ELSE
  371.      BEGIN
  372.        S[I] := CHAR( $70 OR ( PasswordValue AND $0F ) );
  373.        IF 'z' < S[I] THEN
  374.          S[I] := CHAR( BYTE( S[I] )     - 8 );
  375.      END;
  376.        END ELSE
  377.      S[I] := CHAR( $30 OR ( PasswordValue AND $3 ) );
  378.        PasswordValue := ( PasswordValue - BYTE( S[I] ) ) SHR 2;
  379.      END;
  380.  
  381.      S[0] := CHAR( I );
  382.      PasswordValue := I SHR 1;
  383.      WHILE PasswordValue < I DO
  384.      BEGIN {this is to do because award starts calculating with the last letter}
  385.  
  386.        C := S[BYTE( S[0] ) - I + 1];
  387.        S[BYTE( S[0] ) - I + 1] := S[I];
  388.        S[I] := C;
  389.        Dec( I );
  390.      END;
  391.  
  392.      CalcPossiblePassword := S;
  393.    END;
  394.  
  395. "Okay, the algorithms based on the knowlege, that the award-bios' 4.50 and 4.51
  396.  but not (seems to) with earlier versions stores only the last 2 bit of every
  397.  character typed in..."
  398.  
  399.    int CalcPasswordCRC( char pw[8] ): word
  400.    {
  401.      register int i = 8;
  402.      register unsigned w = 0;
  403.      while( i-- )
  404.        w |= ( unsigned( pw[i] ) & 0x3 ) << ( i * 2 );
  405.      return w;
  406.    }
  407. ----------R11--------------------------------
  408. CMOS 11h - Quadtel HT12 BIOS 03.05.03 - CONFIGURATION BITS
  409.  
  410. Bitfields for Quadtel HT12 configuration bits:
  411. Bit(s)    Description    (Table C0013)
  412.  7    640K RAM present
  413.  6    extension type (=CPU's Machine Status Word)
  414.  3-2    NumLock state at boot time
  415.     00 Auto
  416.     01 NumLock on
  417.     10 Numlock off
  418.  0    384K RAM relocated to top of memory
  419. ----------R12--------------------------------
  420. CMOS 12h - IBM - HARD DISK DATA
  421. Notes:    A PC with a single type 2 (20 Mb ST-225) hard disk will have 20h in
  422.       byte 12h
  423.     some PCs utilizing external disk controller ROMs will use type 0 to
  424.       disable ROM BIOS (e.g. Zenith 248 with Plus HardCard).
  425.  
  426. Bitfields for IBM hard disk data:
  427. Bit(s)    Description    (Table C0014)
  428.  7-4    First Hard Disk Drive
  429.     00    No drive
  430.     01-0Eh    Hard drive Type 1-14
  431.     0Fh    Hard Disk Type 16-255
  432.         (actual Hard Drive Type is in CMOS RAM 19h)
  433.  3-0    Second Hard Disk Drive Type
  434.     (same as first except extrnded type will be found in 1Ah).
  435. ----------R12--------------------------------
  436. CMOS 12h - IBM PS/2 - SECOND FIXED DISK DRIVE TYPE (00-FFh)
  437. SeeAlso: CMOS 11h"IBM PS/2"
  438. ----------R13--------------------------------
  439. CMOS 13h - AMI Hi-Flex BIOS - ADVANCED SETUP OPTIONS
  440. SeeAlso: CMOS 11h"WinBIOS"
  441.  
  442. Bitfields for AMI Hi-Flex BIOS advanced setup options:
  443. Bit(s)    Description    (Table C0015)
  444.  7    Mouse Enabled (1 = On)
  445.  6    Test Memory above 1 MB (1 = On)
  446.  5    Memory Test Tick Sound (1 = On)
  447.  4    Memory Parity Error Check (1 = On)
  448.  3    Press <Esc> to Disable Memory Test (1 = On)
  449.  2    User-Defined Hard Disk (1 = Type 47 data area at address 0:300h)
  450.  1    Wait for <F1> Message if Error (1 = On)
  451.  0    Turn Num Lock On at boot (1 = On)
  452. ----------R13--------------------------------
  453. CMOS 13h - AMI WinBIOS - PERIPHERAL OPTIONS
  454.  
  455. Bitfields for AMI WinBIOS peripheral options:
  456. Bit(s)    Description    (Table C0016)
  457.  7-5    typematic rate
  458.     000-111 = 6,8,10,12,15,20,24,30 cps
  459.  4    numeric processor test enabled
  460. ----------R13--------------------------------
  461. CMOS 13h - PS/2 MCA - INTERNAL POST OPERATIONS
  462.  
  463. Bitfields for PS/2 MCA internal POST operations:
  464. Bit(s)    Description    (Table C0017)
  465.  7    POST sets VGA pel information
  466.  6    RTC battery OK
  467.  5    invoke ROM BASIC from POST
  468.  4    POST sets typematic to 30cps/250ms delay instead of 10.9cps/500ms
  469.  3-2    unused or unknown
  470.  1    network password installed
  471.  0    power-on password installed
  472. ----------R13--------------------------------
  473. CMOS 13h - AWARD - Configuration Bits
  474.  
  475. Bitfields for AWARD configuration bits:
  476. Bit(s)    Description    (Table C0018)
  477.  7    set keyboard typematic rate
  478.  4-6    keyboard repeat rate
  479.     000 =  6 cps
  480.     001 =  8 cps
  481.     010 = 10 cps
  482.     011 = 12 cps
  483.     100 = 15 cps
  484.     101 = 20 cps
  485.     110 = 24 cps
  486.     111 = 30 cps
  487.  2-3    keyboard typematic delay
  488.     00 =  250 Msec
  489.     01 =  500 Msec
  490.     10 =  750 Msec
  491.     11 = 1000 Msec
  492.  1    ???
  493.  0    boot up floppy seek
  494. ----------R14--------------------------------
  495. CMOS 14h - IBM - EQUIPMENT BYTE 
  496.  
  497. Bitfields for IBM equipment byte:
  498. Bit(s)    Description    (Table C0019)
  499.  7-6    number of floppy drives (system must have at least one)
  500.     00b   1 Drive
  501.     01b   2 Drives
  502.     10b ??? 3 Drives
  503.     11b ??? 4 Drives
  504.  5-4    monitor type
  505.     00b Not CGA or MDA (observed for EGA & VGA)
  506.     01b 40x25 CGA
  507.     10b 80x25 CGA
  508.     11b MDA (Monochrome)
  509.  3    display enabled (turned off to enable boot of rackmount)
  510.  2    keyboard enabled (turn off to enable boot of rackmount)
  511.  1    math coprocessor installed
  512.  0    floppy drive installed (turned off for rackmount boot)
  513. ----------R14--------------------------------
  514. CMOS 14h - AMSTRAD - BYTE user RAM checksum
  515. Desc:    LSB of sum of all user bytes should be AAh
  516. ----------R15--------------------------------
  517. CMOS 15h - IBM - BASE MEMORY IN KB (low byte)
  518. ----------R1516------------------------------
  519. CMOS 15h-16h - AMSTRAD - Enter key scancode/ASCII code
  520. Size:    WORD
  521. Desc:    specify the BIOS keycode for keyboard scancode 74h
  522. Note:    default: 1C0Dh    - emulates Return key
  523. SeeAlso: INT 09,CMOS 17h"AMSTRAD"
  524. ----------R16--------------------------------
  525. CMOS 16h - IBM - BASE MEMORY IN KB (high byte)
  526. Note:    The value in 15h-16h should be the same as in 0:413h and that
  527.       returned by INT 12h. A PC having 640k (280h) of conventional
  528.       memory will return 80h in byte 15h and 02h in byte 16h.
  529. ----------R17--------------------------------
  530. CMOS 17h - IBM - EXTENDED MEMORY IN KB (low byte)
  531. ----------R1718------------------------------
  532. CMOS 17h-18h - AMSTRAD - Forward delete key scancode/ASCII code
  533. Size:    WORD
  534. Desc:    specify the BIOS keycode for keyboard scancode 70h
  535. Note:    default: 2207h    - emulates ^G (bell/beep)
  536. SeeAlso: INT 09,CMOS 15h"AMSTRAD",CMOS 19h"AMSTRAD"
  537. ----------R18--------------------------------
  538. CMOS 18h - IBM - EXTENDED MEMORY IN KB (high byte)
  539. Notes:    some systems will only accommodate 15 MB extended (16 MB total)
  540.     Format is the same as in 15h-16h
  541. ----------R19--------------------------------
  542. CMOS 19h - IBM - FIRST EXTENDED HARD DISK DRIVE TYPE
  543. Note:    not in original AT specification but now nearly universally used
  544.       except for PS/2.
  545.  
  546. (Table C0020)
  547. Values for extended hard disk drive type:
  548.   00-0Fh unused (would not require extension. Note: this has the effect of
  549.       making type 0Fh (15d) unavailable.
  550.   10h-FFh First Extended Hard Drive Type 16d-255d
  551. Note: For most manufacturers the last drive type (typically either 47d or 49d)
  552.     is "user defined" and parameters are stored elsewhere in the CMOS.
  553. ----------R19--------------------------------
  554. CMOS 19h - MCA - SLOT 0 ADAPTER CARD ID
  555. ----------R19--------------------------------
  556. CMOS 19h - AMI - ???
  557.  
  558. Bitfields for AMI location 19h:
  559. Bit(s)    Description    (Table C0021)
  560.  3-0    ???
  561.  7-4    ???
  562. ----------R191A------------------------------
  563. CMOS 19h-1Ah - AMSTRAD - Joystick fire button 1 scancode/ASCII code
  564. Size:    WORD
  565. Desc:    specify the BIOS keycode for keyboard scancode 77h
  566. Note:    default: FFFFh    - (no translation)
  567. SeeAlso: INT 09,CMOS 17h"AMSTRAD",CMOS 1Bh"AMSTRAD"
  568. ----------R1A--------------------------------
  569. CMOS 1Ah - SECOND EXTENDED HARD DISK DRIVE TYPE
  570. SeeAlso: CMOS 19h"IBM",#C0020
  571. ----------R1A--------------------------------
  572. CMOS 1Ah - MCA - SLOT 0 ADAPTER CARD ID
  573. ----------R1B--------------------------------
  574. CMOS 1Bh - MCA - SLOT 1 ADAPTER CARD ID
  575. ----------R1B--------------------------------
  576. CMOS 1Bh - AMI - First Hard Disk (type 47) user defined: # of Cylinders, LSB
  577. ----------R1B1C------------------------------
  578. CMOS 1Bh-1Ch - AMSTRAD - Joystick fire button 2 scancode/ASCII code
  579. Size:    WORD
  580. Desc:    specify the BIOS keycode for keyboard scancode 78h
  581. Note:    default: FFFFh    - (no translation)
  582. SeeAlso: INT 09,CMOS 19h"AMSTRAD",CMOS 1Dh"AMSTRAD"
  583. ----------R1B--------------------------------
  584. CMOS 1Bh - PHOENIX - LSB of Word to 82335 RC1 roll compare register
  585. ----------R1B--------------------------------
  586. CMOS 1Bh - AWARD - CONFIGURATION BITS
  587.  
  588. Bitfields for AWARD shadow RAM configuration bits:
  589. Bit(s)    Description    (Table C0022)
  590.  7-4    ???
  591.  3    Shadow ROM BIOS at DC00-DFFF
  592.  2    shadow        "     "   " D800-DBFF
  593.  1    shadow        "     "   " D400-D7FF
  594.  0    shadow        "     "   " D000-D3FF
  595. ----------R1C--------------------------------
  596. CMOS 1Ch - MCA - SLOT 1 ADAPTER CARD ID
  597. ----------R1C--------------------------------
  598. CMOS 1Ch - AMI - First Hard Disk user defined: # of Cylinders, High Byte
  599. ----------R1C--------------------------------
  600. CMOS 1Ch - PHOENIX - MSB of Word to 82335 RC1 roll compare register
  601. --------y-R1C--------------------------------
  602. CMOS 1Ch,1Dh - AWARD - Password
  603. Note:    Stored as a checksum using the following algorithm:
  604.         initialize 16-bit checksum to zero
  605.         for each ASCII character between 32 (space) and 127 (DEL) in the
  606.           password,    add character to checksum, then rotate left two bits
  607.         store low byte of result in 1Ch and high byte in 1Dh (for user
  608.           password, use locations 4Dh and 4Eh instead)
  609. SeeAlso: CMOS 4Dh"AWARD"
  610. ----------R1D--------------------------------
  611. CMOS 1Dh - MCA - SLOT 2 ADAPTER CARD ID
  612. ----------R1D--------------------------------
  613. CMOS 1Dh - AMI - First Hard Disk user defined: Number of Heads
  614. ----------R1D--------------------------------
  615. CMOS 1Dh - AMSTRAD - mouse button 1 scancode/ASCII code
  616. Size:    WORD
  617. Desc:    specify the BIOS keycode for keyboard scancode 7Dh
  618. Note:    default: FFFFh    - (no translation)
  619. SeeAlso: INT 09,CMOS 1Bh"AMSTRAD",CMOS 1Fh"AMSTRAD"
  620. ----------R1D--------------------------------
  621. CMOS 1Dh - Zenith Z-200 monitor - BOOT DRIVE SELECTION
  622.  
  623. Bitfields for Zenith Z-200 boot drive selection:
  624. Bit(s)    Description    (Table C0023)
  625.  6-5    (0xx0 0000)
  626.     00 - MFM Monitor
  627.     01 - First floppy drive (A:)
  628.     10 - First fixed disk (C:)
  629.     11 - First floppy drive (A:). If not there then First fixed disk (C:)
  630.         (this is the default).
  631. ----------R1D--------------------------------
  632. CMOS 1Dh - PHOENIX - LSB of Word to 82335 RC2 roll compare register
  633. --------y-R1D--------------------------------
  634. CMOS 1Dh - AWARD - MSB of password checksum (see byte 1Ch)
  635. ----------R1D--------------------------------
  636. CMOS 1Dh - Quadtel HT 12 BIOS - first user def. drive: # of cylinders low byte
  637. ----------R1E--------------------------------
  638. CMOS 1Eh - MCA - SLOT 2 ADAPTER CARD ID
  639. ----------R1E--------------------------------
  640. CMOS 1Eh - AMI - First Hard Disk user defined: WPC-low
  641. Desc:    Write Precompensation Cylinder, Low Byte, for first user-defined hard
  642.       disk
  643. ----------R1E--------------------------------
  644. CMOS 1Eh - PHOENIX - MSB of Word to 82335 RC2 roll compare register
  645. ----------R1E--------------------------------
  646. CMOS 1Eh - AWARD - 2nd Hard Disk user defined: # of Cylinders Low Byte
  647. ----------R1E--------------------------------
  648. CMOS 1Eh - Quadtel HT 12 BIOS - FIRST USER DEFINED DRIVE
  649.  
  650. Bitfields for Quadtel HT-12 user-defined drive heads/cylinders:
  651. Bit(s)    Description    (Table C0024)
  652.  7-4    number of heads
  653.  3-0    number of cylinders (MSB)
  654. ----------R1F--------------------------------
  655. CMOS 1Fh - MCA - SLOT 3 ADAPTER CARD ID
  656. ----------R1F--------------------------------
  657. CMOS 1Fh - AMI - First Hard Disk user defined: WPC-high
  658. Desc:    Write Precompensation Cylinder, high byte, for first user-defined
  659.       hard disk
  660. ----------R1F20------------------------------
  661. CMOS 1Fh-20h - AMSTRAD - mouse button 2 scancode/ASCII code
  662. Size:    WORD
  663. Desc:    specify the BIOS keycode for keyboard scancode 7Eh
  664. Note:    default: FFFFh    - (no translation)
  665. SeeAlso: INT 09,CMOS 1Dh"AMSTRAD"
  666. ----------R1F--------------------------------
  667. CMOS 1Fh - AWARD - 2nd Hard Disk user defined (type 48): # of Cylinders High
  668. ----------R1F--------------------------------
  669. CMOS 1Fh - Quadtel HT 12 BIOS - first user def. drive: WPC-low
  670. Desc:    Write Precompensation Cylinder, low byte, for first user-defined
  671.       hard disk
  672. ----------R20--------------------------------
  673. CMOS 20h - MCA - SLOT 3 ADAPTER CARD ID
  674. ----------R20--------------------------------
  675. CMOS 20h - AMI - First Hard Disk user defined: Control Byte
  676.  
  677. Bitfields for AMI user-defined hard disk control byte:
  678. Bit(s)    Description    (Table C0025)
  679.  7-6    no retries (1)
  680.  5    bad sector map at last cylinder+1
  681.  4    unused (0)
  682.  3    more than 8 heads
  683.  2-0    unused (0)
  684. ----------R20--------------------------------
  685. CMOS 20h - AMI WinBIOS - First Hard Disk user defined: Landing Zone, Low Byte
  686. ----------R20--------------------------------
  687. CMOS 20h - PHOENIX - First user defined hard disk (type 48) Cylinders LSB
  688. ----------R20--------------------------------
  689. CMOS 20h - AWARD - 2nd Hard Disk user defined (type 48): Number of Heads
  690. ----------R20--------------------------------
  691. CMOS 20h - Quadtel HT 12 BIOS - FIRST USER DEFINED DRIVE
  692. SeeAlso: CMOS 26h"Quadtel"
  693.  
  694. Bitfields for Quadtel landing zone/write-precompensation:
  695. Bit(s)    Description    (Table C0026)
  696.  7-4    landing zone MSB
  697.  3-0    write precom. cyl. MSB
  698. ----------R21--------------------------------
  699. CMOS 21h - MCA - Programmable Option Select configuration byte 2
  700. ----------R21--------------------------------
  701. CMOS 21h - AMI - First Hard Disk user defined: Landing Zone, Low Byte
  702. ----------R21--------------------------------
  703. CMOS 21h - AMI WinBIOS - First Hard Disk user defined: Landing Zone, High Byte
  704. ----------R21--------------------------------
  705. CMOS 21h - AMSTRAD - MOUSE X SCALING FACTOR
  706. Note:    default: 0Ah
  707. ----------R21--------------------------------
  708. CMOS 21h - PHOENIX - First user defined hard disk (type 48) Cylinders MSB
  709. ----------R21--------------------------------
  710. CMOS 21h - AWARD - 2nd Hard Disk user defined (type 48): Write Precomp Low Byte
  711. ----------R21--------------------------------
  712. CMOS 21h - Quadtel HT 12 BIOS - first user def. drive: landing zone low byte
  713. ----------R22--------------------------------
  714. CMOS 22h - MCA - Programmable Option Select configuration byte 3
  715. ----------R22--------------------------------
  716. CMOS 22h - AMI - First Hard Disk user defined: Landing Zone, High Byte
  717. ----------R22--------------------------------
  718. CMOS 22h - AMI WinBIOS - First Hard Disk user defined: # of Sectors per track
  719. ----------R22--------------------------------
  720. CMOS 22h - AMSTRAD - MOUSE Y SCALING FACTOR
  721. Note:    default: 0Ah
  722. ----------R22--------------------------------
  723. CMOS 22h - PHOENIX - First user defined hard disk (type 48)     of Heads
  724. ----------R22--------------------------------
  725. CMOS 22h - AWARD - 2nd Hard Disk user defined (type 48): Write Precomp High Byte
  726. ----------R22--------------------------------
  727. CMOS 22h - Quadtel HT 12 BIOS - first user def. drive: sectors per track
  728. ----------R23--------------------------------
  729. CMOS 23h - MCA - Programmable Option Select configuration byte 4
  730. ----------R23--------------------------------
  731. CMOS 23h - AMI - First Hard Disk user defined: # of Sectors per track
  732. ----------R23--------------------------------
  733. CMOS 23h - AMI WinBIOS - Second Hard Disk user defined: # Cylinders, Low Byte
  734. ----------R23--------------------------------
  735. CMOS 23h - AMSTRAD - INITIAL VDU MODE AND DRIVE COUNT
  736. Note:    default: 20h
  737.  
  738. Bitfields for Amstrad initial VDU mode/drive count:
  739. Bit(s)    Description    (Table C0027)
  740.  7    enables extended serial flow control (NB this is buggy)
  741.  6    set if two floppy drives installed
  742.  5-4    (from Amstrad 1640 tech ref)
  743.     00    Internal video adapter
  744.     01    CGA card added; 40 x 25 mode
  745.     10    CGA card added; 80 x 25 mode
  746.     11    mono card added; 80 x 25 mode
  747. ----------R23--------------------------------
  748. CMOS 23h - PHOENIX - First user defined hard disk (type 48) Write Precomp. LSB
  749. ----------R23--------------------------------
  750. CMOS 23h - AWARD - 2nd Hard Disk user defined (type 48): Landing Zone Low Byte
  751. ----------R23--------------------------------
  752. CMOS 23h - Quadtel HT 12 BIOS - second user def. drive: # of cylinders low byte
  753. ----------R24--------------------------------
  754. CMOS 24h - MCA - Programmable Option Select configuration byte 5
  755. ----------R24--------------------------------
  756. CMOS 24h - AMI - Second Hard Disk user defined: # Cylinders, Low Byte
  757. ----------R24--------------------------------
  758. CMOS 24h - AMI WinBIOS - Second Hard Disk user defined: # Cylinders, High Byte
  759. ----------R24--------------------------------
  760. CMOS 24h - AMSTRAD - INITIAL VDU CHARACTER ATTRIBUTE
  761. Note: default: 7h
  762. ----------R24--------------------------------
  763. CMOS 24h - PHOENIX - First user defined hard disk (type 48) Write Precomp. MSB
  764. ----------R24--------------------------------
  765. CMOS 24h - AWARD - 2nd Hard Disk user defined (type 48): Landing Zone High Byte
  766. ----------R24--------------------------------
  767. CMOS 24h - Quadtel HT 12 BIOS - SECOND USER DEFINED DRIVE
  768. SeeAlso: CMOS 1Eh"Quadtel",#C0024
  769. ----------R25--------------------------------
  770. CMOS 25h - AMI - Second Hard Disk user defined: # of Cylinders, High Byte
  771. ----------R25--------------------------------
  772. CMOS 25h - AMI WinBIOS - Second Hard Disk user defined: Number of Heads
  773. ----------R25--------------------------------
  774. CMOS 25h - AMSTRAD - size of RAM disk in 2K blocks
  775. Note:    default: 0  - only used by the RAMDISK software supplied.
  776. ----------R25--------------------------------
  777. CMOS 25h - PHOENIX - First user defined hard disk (type 48) Parking zone LSB
  778. ----------R25--------------------------------
  779. CMOS 25h - AWARD - 2nd Hard Disk user defined (type 48): Sectors per Track
  780. ----------R25--------------------------------
  781. CMOS 25h - Quadtel HT 12 BIOS - second user def. drive: WPC-low
  782. Desc:    Write Precompensation Cylinder, low byte
  783. ----------R26--------------------------------
  784. CMOS 26h - AMI - Second Hard Disk user defined: Number of Heads
  785. ----------R26--------------------------------
  786. CMOS 26h - AMI WinBIOS - Second Hard Disk user defined: WPC-low
  787. Desc:    Write Precompensation Cylinder, Low Byte
  788. ----------R26--------------------------------
  789. CMOS 26h - AMSTRAD - INITIAL SYSTEM UART SETUP BYTE
  790. Note:    default: E3h - format as for Int 14h fn 0
  791. ----------R26--------------------------------
  792. CMOS 26h - PHOENIX - First user defined hard disk (type 48) Parking zone MSB
  793. ----------R26--------------------------------
  794. CMOS 26h - AWARD - 1st Hard Disk user defined (type 49): # Cylinders, Low Byte
  795. ----------R26--------------------------------
  796. CMOS 26h - Quadtel HT 12 BIOS - SECOND USER DEFINED DRIVE
  797. SeeAlso: CMOS 20h"Quadtel",#C0026
  798. ----------R27--------------------------------
  799. CMOS 27h - AMI - Second Hard Disk user defined: WPC-low
  800. Desc:    Write Precompensation Cylinder, Low Byte
  801. ----------R27--------------------------------
  802. CMOS 27h - AMI WinBIOS - Second Hard Disk user defined: WPC-high
  803. Desc:    Write Precompensation Cylinder, High Byte
  804. ----------R27--------------------------------
  805. CMOS 27h - AMSTRAD - INITIAL EXTERNAL UART SETUP BYTE
  806. Note:    default: E3h - format as for Int 14h fn 0
  807. ----------R27--------------------------------
  808. CMOS 27h - PHOENIX - First user defined hard disk (type 48) Sectors per track
  809. ----------R27--------------------------------
  810. CMOS 27h - AWARD - 1st Hard Disk user defined (type 49): # Cylinders, High Byte
  811. ----------R27--------------------------------
  812. CMOS 27h - Quadtel HT 12 BIOS - SECOND USER DEF. DRIVE: landing zone low byte
  813. ----------R28--------------------------------
  814. CMOS 28h - AMI - Second Hard Disk user defined: WPC-high
  815. Desc:    Write Precompensation Cylinder, High Byte
  816. ----------R28--------------------------------
  817. CMOS 28h - AMI WinBIOS - Second Hard Disk user defined: Landing Zone, Low Byte
  818. ----------R28--------------------------------
  819. CMOS 28h - HP Vectra - checksum over bytes 29h-2Dh
  820. ----------R28--------------------------------
  821. CMOS 28h - AWARD - 1st Hard Disk user defined (type 49): Number of Heads
  822. ----------R28--------------------------------
  823. CMOS 28h - Quadtel HT 12 BIOS - second user def. drive: sectors per track
  824. ----------R283F------------------------------
  825. CMOS 28h-3Fh - AMSTRAD - user applications default: zeroes
  826. ----------R29--------------------------------
  827. CMOS 29h - AMI - Second Hard Disk user defined: Control Byte
  828. Note:    80h if # of heads is equal or greater than 8
  829. ----------R29--------------------------------
  830. CMOS 29h - AMI WinBIOS - Second Hard Disk user defined: Landing Zone, High Byte
  831. ----------R29--------------------------------
  832. CMOS 29h - PHOENIX - LSB word to Intel 82335 CC0 compare register
  833. ----------R29--------------------------------
  834. CMOS 29h - AWARD - 1st Hard Disk user defined (type 49): Write Precomp Low Byte
  835. ----------R29--------------------------------
  836. CMOS 29h - HP Vectra - OFFICIALLY RESERVED "CMOS_HPCONFIG"
  837.  
  838. Bitfields for HP Vectra CMOS_HPCONFIG:
  839. Bit(s)    Description    (Table C0028)
  840.  7    include byte 2Ch in checksum (default = 0)
  841.  6    select second ROM video adapter as primary (default = 0)
  842.  5-1    reserved
  843.  0    manufacturing test enabled
  844. ----------R2A--------------------------------
  845. CMOS 2Ah - AMI - Second Hard Disk user defined: Landing Zone, Low Byte
  846. ----------R2A--------------------------------
  847. CMOS 2Ah - AMI WinBIOS - Second Hard Disk user defined: # of Sectors per track
  848. ----------R2A--------------------------------
  849. CMOS 2Ah - HP Vectra - OFFICIALLY RESERVED
  850. ----------R2A--------------------------------
  851. CMOS 2Ah - PHOENIX - MSB word to Intel 82335 CC0 compare register
  852. ----------R2A--------------------------------
  853. CMOS 2Ah - AWARD - 1st Hard Disk user defined (type 49): Write Precomp High
  854. ----------R2B--------------------------------
  855. CMOS 2Bh - AMI - Second Hard Disk user defined: Landing Zone, High Byte
  856. ----------R2B--------------------------------
  857. CMOS 2Bh - AMI WinBIOS - IDE and shadowing control
  858.  
  859. Bitfields for AMI WinBIOS IDE/shadowing control:
  860. Bit(s)    Description    (Table C0029)
  861.  7    LBA mode enabled
  862.  6    IDE block mode enabled
  863.  5    32-bit transfer enabled
  864.  4    unused
  865.  3    shadowing of DC00h enabled
  866.  2    shadowing of D800h enabled
  867.  1    shadowing of D400h enabled
  868.  0    shadowing of D000h enabled
  869. SeeAlso: #C0030
  870. ----------R2B--------------------------------
  871. CMOS 2Bh - HP Vectra - OFFICIALLY RESERVED
  872. ----------R2B--------------------------------
  873. CMOS 2Bh - PHOENIX - LSB word to Intel 82335 CC1 compare register
  874. ----------R2B--------------------------------
  875. CMOS 2Bh - AWARD - 1st Hard Disk user defined (type 49): Landing Zone  Low Byte
  876. ----------R2C--------------------------------
  877. CMOS 2Ch - AMI - Second Hard Disk user defined: # of Sectors per track
  878. ----------R2C--------------------------------
  879. CMOS 2Ch - AMI WinBIOS - CACHE CONTROL
  880.  
  881. Bitfields for AMI WinBIOS cache control:
  882. Bit(s)    Description    (Table C0030)
  883.  7    external RAM cache enabled
  884.  6    internal RAM cache enabled
  885.  5    shadowing of E000h enabled
  886.  4    shadowing of CC00h enabled
  887.  3    shadowing of C800h enabled
  888.  2    shadowing of C400h (video ROM) enabled
  889.  1    shadowing of C000h (video ROM) enabled
  890.  0    shadowing of system BIOS (F000h, 64K) enabled
  891. SeeAlso: #C0029
  892. ----------R2C--------------------------------
  893. CMOS 2Ch - HP Vectra - OFFICIALLY RESERVED
  894. ----------R2C--------------------------------
  895. CMOS 2Ch - COMPAQ - NumLock CONTROL
  896.  
  897. Bitfields for Compaq NumLock control:
  898. Bit(s)    Description    (Table C0031)
  899.  6    0 - numlock OFF on boot, 1 - numlock ON at boot
  900. ----------R2C--------------------------------
  901. CMOS 2Ch - PHOENIX - MSB word to Intel 82335 CC1 compare register
  902. ----------R2C--------------------------------
  903. CMOS 2Ch - AWARD - 1st Hard Disk user defined (type 49): Landing Zone High Byte
  904. ----------R2D--------------------------------
  905. CMOS 2Dh - AMI Hi-Flex BIOS - CONFIGURATION OPTIONS 
  906.  
  907. Bitfields for AMI Hi-Flex BIOS configuration options:
  908. Bit(s)    Description    (Table C0032)
  909.  7    Weitek Installed
  910.  6    Floppy Drive Seek - turn off for fast boot
  911.  5    Boot Order
  912.     0 - Drive C:, then A:
  913.     1 - Drive A:, then C:
  914.  4    Boot Speed (0 - Low; 1 - High)
  915.  3    External Cache Enable (1 = On)
  916.  2    Internal Cache Enable (1 = On)
  917.  1    Use Fast Gate A20 after boot (1 = On)
  918.  0    Turbo Switch (1 = On)
  919. ----------R2D--------------------------------
  920. CMOS 2Dh - AMI WinBIOS - flags
  921.  
  922. Bitfields for AMI WinBIOS flags:
  923. Bit(s)    Description    (Table C0033)
  924.  7    Weitek Installed
  925.  6    bootsector virus protection enabled
  926.  5    mouse enabled
  927.  4    password checking (0 setup, 1 always)
  928.  3    parity error check enabled
  929.  2-1    boot order (00 = C:A:, 01 = A:C:)
  930.  0    turbo switch enabled
  931. ----------R2D--------------------------------
  932. CMOS 2Dh - HP Vectra - OFFICIALLY RESERVED
  933. ----------R2D--------------------------------
  934. CMOS 2Dh - PHOENIX - ???
  935. Note:    checks for values AAh or CCh
  936. ----------R2D--------------------------------
  937. CMOS 2Dh - AWARD - 1st Hard Disk user defined (type 49): Sectors per Track
  938. ----------R2E--------------------------------
  939. CMOS 2Eh - IBM - Standard CMOS Checksum, High Byte
  940. ----------R2F--------------------------------
  941. CMOS 2Fh - IBM - Standard CMOS Checksum, Low Byte
  942.  
  943.  2Eh and 2Fh are as defined by the original IBM PC/AT specification and
  944.  represent a byte-wise additive sum of the values in locations 10h-2Dh only,
  945.  00h-0Fh and 30h-33h are not included. This definition is used by most
  946.  clone manufacturers including AMI, Compaq, Tandon, NEC, and Zenith. The 
  947.  IBM PS/2 line does not follow this standard with the range 19h-31h being 
  948.  undefined.  On the original HP Vectra, this checksum only covers locations
  949.  10h to 20h, with a separate checksum for bytes 29h-2Ch (see offset 28h).
  950.  
  951. ----------R30--------------------------------
  952. CMOS 30h - IBM - EXTENDED MEMORY IN KB (low byte)
  953. SeeAlso: CMOS 17h"IBM",CMOS 31h
  954. ----------R31--------------------------------
  955. CMOS 31h - IBM - EXTENDED MEMORY IN KB (high byte) 
  956.  (this appears to mirror the value in bytes 17h-18h.) 
  957. SeeAlso: CMOS 18h"IBM",CMOS 30h
  958. ----------R32--------------------------------
  959. CMOS 32h - IBM - CENTURY BYTE (BCD value for the century - currently 19h)
  960. SeeAlso: CMOS 7Fh
  961. ----------R32--------------------------------
  962. CMOS 32h - IBM PS2 - CONFIGURATION CRC LOW BYTE
  963. Desc:    CRC for range 10h-31h
  964. SeeAlso: CMOS 33h"PS/2"
  965. ----------R33--------------------------------
  966. CMOS 33h - IBM - INFORMATION FLAG
  967.  
  968. Bitfields for IBM information flag:
  969. Bit(s)    Description    (Table C0034)
  970.  7    128K ??? believe this indicates the presence of the special 128k
  971.       memory expansion board for the AT to boost the "stock" 512k
  972.       to 640k - all machines surveyed have this bit set)
  973.  6-0    ???
  974. ----------R33--------------------------------
  975. CMOS 33h - IBM PS/2 - CONFIGURATION CRC HIGH BYTE (see entry for 32h)
  976. SeeAlso: CMOS 32h"PS/2"
  977. ----------R33--------------------------------
  978. CMOS 33h - PHOENIX - Bit 4 (000x 0000) bit 4 from Intel CPU register CR0
  979. ----------R33--------------------------------
  980. CMOS 33h - AMI WinBIOS - INFORMATION FLAGS
  981.  
  982. Bitfields for AMI WinBIOS information flags:
  983. Bit(s)    Description    (Table C0035)
  984.  7    IBM-defined top 128K present
  985.  6-4    CPU internal clock frequency
  986.     000-011 = 25, 33, 40, 50 MHz
  987.     100 = 60/66 MHz
  988.     101 = 75 MHz
  989.     110 = 80 MHz
  990.     111 = 90/100 MHz
  991.  2-1    CPU internal clock multiplier
  992.     00-11 = 1,2,3,4
  993.  0    FlashROM programming enabled (Ctrl-Home pressed at power on)
  994.     Note: this location is not included in any CMOS checksum fields
  995. ----------R33--------------------------------
  996. CMOS 33h - Quadtel HT12 BIOS 03.05.03 - INFORMATION FLAGS
  997.  
  998. Bitfields for Quadtel HT12 information flags:
  999. Bit(s)    Description    (Table C0036)
  1000.  7    640K RAM present
  1001.  6    extension type (=CPU's Machine Status Word)
  1002.  1    print welcome message
  1003. ----------R34--------------------------------
  1004. CMOS 34h - AMI - SHADOWING & BOOT PASSWORD
  1005. SeeAlso: CMOS 35h"AMI"
  1006.  
  1007. Bitfields for AMI shadowing control 1:
  1008. Bit(s)    Description    (Table C0037)
  1009.  7-6    password selection
  1010.     00b Disable
  1011.     10b Reserved
  1012.     01b Set
  1013.     11b Boot
  1014.  5    C8000h Shadow ROM (Bit 1 = On) 
  1015.  4    CC000h Shadow ROM (Bit 1 = On)
  1016.  3    D0000h Shadow ROM (Bit 1 = On)
  1017.  2    D4000h Shadow ROM (Bit 1 = On)
  1018.  1    D8000h Shadow ROM (Bit 1 = On)
  1019.  0    DC000h Shadow ROM (Bit 1 = On)
  1020. SeeAlso: #C0038
  1021. ----------R34--------------------------------
  1022. CMOS 34h - AMI - EXTENDED MEMORY >16M (low byte)
  1023. Note:    this and the following byte contain the total extended memory in 64K
  1024.       blocks
  1025. SeeAlso: CMOS 35h"AMI"
  1026. ----------R34--------------------------------
  1027. CMOS 34h - (AMI WinBIOS) system-specific information (bits 3-1)
  1028. ----------R343A------------------------------
  1029. CMOS 34h-3Ah - (AWARD) ??? unused ???  Defaults to all FFh's.
  1030. ----------R35--------------------------------
  1031. CMOS 35h - AMI - EXTENDED MEMORY >16M (high byte)
  1032. Note:    this and the previous byte contain the total extended memory in 64K
  1033.       blocks
  1034. SeeAlso: CMOS 34h"AMI"
  1035. ----------R35--------------------------------
  1036. CMOS 35h - AMI - SHADOWING CONTROL 2
  1037. SeeAlso: CMOS 34"AMI"
  1038.  
  1039. Bitfields for AMI shadowing control 2:
  1040. Bit(s)    Description    (Table C0038)
  1041.  7    E0000h Shadow ROM (Bit 1 = On)
  1042.  6    E4000h Shadow ROM (Bit 1 = On)
  1043.  5    E8000h Shadow ROM (Bit 1 = On)
  1044.  4    EC000h Shadow ROM (Bit 1 = On)
  1045.  3    F0000h Shadow ROM (Bit 1 = On)
  1046.  2    C0000h Shadow ROM (Bit 1 = On)
  1047.  1    C4000h Shadow ROM (Bit 1 = On)
  1048.  0    reserved
  1049. SeeAlso: #C0037
  1050. ----------R35--------------------------------
  1051. CMOS 35h - AMI WinBIOS - EXTENDED MEMORY SIZE IN 64K BLOCKS (low byte)
  1052. SeeAlso: CMOS 36h"AMI WinBIOS"
  1053. ----------R35--------------------------------
  1054. CMOS 35h - PHOENIX - Second user defined hard disk (type 48) Cylinders LSB
  1055. Note:    used only when PS/2 style password is NOT in effect
  1056. ----------R35--------------------------------
  1057. CMOS 35h - AMI 1990 Hyundai super-NB368S notebook
  1058.  
  1059. Bitfields for Hyundai configuration:
  1060. Bit(s)    Description    (Table C0039)
  1061.  3-1    shadowing
  1062.     000  shadow disabled
  1063.     011  video BIOS shadowed
  1064.     100  main BIOS shadowed
  1065.     111  both
  1066.  0    coprocessor enabled
  1067. ----------R36--------------------------------
  1068. CMOS 36h - PHOENIX - Second user defined hard disk (type 48) Cylinders MSB
  1069. Note:    used only when PS/2 style password is NOT in effect.
  1070. ----------R36--------------------------------
  1071. CMOS 36h - AWARD - IDE control
  1072.  
  1073. Bitfields for AWARD IDE control:
  1074. Bit(s)    Description    (Table C0040)
  1075.  6    IDE 32-bit transfer mode
  1076. ----------R36--------------------------------
  1077. CMOS 36h - AMI - ???
  1078.  
  1079. Bitfields for AMI ???:
  1080. Bit(s)    Description    (Table C0041)
  1081.  1-0    ???
  1082.  3-2    ???
  1083. ----------R36--------------------------------
  1084. CMOS 36h - AMI WinBIOS - EXTENDED MEMORY SIZE IN 64K BLOCKS (high byte)
  1085. ----------R36--------------------------------
  1086. CMOS 36h - AMI 1990 Hyundai super-NB368S notebook - CPU/VIDEO CONFIGURATION
  1087.  
  1088. Bitfields for Hyundai CPU/video control:
  1089. Bit(s)    Description    (Table C0042)
  1090.  7    =1 LCD, 0 CRT at boot time
  1091.  6    =1 reversed, 0 normal video mode
  1092.  5    =1 external, 0 internal keyboard
  1093.  4-3    CPU speed
  1094.     00  high
  1095.     01  medium
  1096.     10  low
  1097.  2-1    harddisk vendor 1,2,3,4
  1098.  0    relocation enabled
  1099. ----------R36--------------------------------
  1100. CMOS 36h - Quadtel HT12 BIOS 03.05.03 - EXTENDED MEMORY (low byte)
  1101. ----------R37--------------------------------
  1102. CMOS 37h - IBM PS/2 - DATE CENTURY BYTE 
  1103. ----------R37--------------------------------
  1104. CMOS 37h - PHOENIX - Second user defined hard disk (type 48) # of heads
  1105.        NOTE: used only when PS/2 style password is NOT in effect.
  1106. ----------R37--------------------------------
  1107. CMOS 37h - AMI Hi-Flex BIOS - ???
  1108.  
  1109. Bitfields for AMI Hi-Flex BIOS location 37h:
  1110. Bit(s)    Description    (Table C0043)
  1111.  7    ???
  1112. ----------R37--------------------------------
  1113. CMOS 37h - AMI WinBIOS - SETUP COLORS, PASSWORD SEED
  1114.  
  1115. Bitfields for AMI WinBIOS setup colors and password seed:
  1116. Bit(s)    Description    (Table C0044)
  1117.  7-4    password seed
  1118.  3-0    WinBIOS/AMIBIOS setup color options
  1119. ----------R37--------------------------------
  1120. CMOS 37h - Quadtel HT12 BIOS 03.05.03 - EXTENDED MEMORY (high byte)
  1121. --------y-R373A------------------------------
  1122. CMOS 37h-3Ah - AMI 1990 Hyundai super-NB368S notebook - PASSWORD
  1123. Desc:    encoded password, max 4 bytes.
  1124. ----------R38--------------------------------
  1125. CMOS 38h - PHOENIX - Second user defined hard disk (type 48) Write Precomp. LSB
  1126. Note:    used only when PS/2 style password is NOT in effect.
  1127. --------y-R383D------------------------------
  1128. CMOS 38h-3Dh - AMI - Encrypted Password
  1129. --------y-R383F------------------------------
  1130. CMOS 38h-3Fh - ??? IBM PS/2 - Encrypted Password
  1131. Note:    Initialized to 00h in all bytes. Will accept from 1-7 scan codes. 
  1132. ----------R39--------------------------------
  1133. CMOS 39h - PHOENIX - Second user defined hard disk (type 48) Write Precomp. MSB
  1134. Note:    used only when PS/2 style password is NOT in effect.
  1135. ----------R3A--------------------------------
  1136. CMOS 3Ah - PHOENIX - Second user defined hard disk (type 48) Parking Zone LSB
  1137. Note:    used only when PS/2 style password is NOT in effect.
  1138. ----------R3B--------------------------------
  1139. CMOS 3Bh - PHOENIX - Second user defined hard disk (type 48) Parking Zone MSB
  1140. Note:    used only when PS/2 style password is NOT in effect.
  1141. ----------R3B--------------------------------
  1142. CMOS 3Bh - AWARD - CONFIGURATION BITS
  1143.  
  1144. Bitfields for AWARD configuration bits:
  1145. Bit(s)    Description    (Table C0045)
  1146.  4-7    Screen Colors Used in Setup (see #C0046)
  1147.  3    ??? Default = 0
  1148.  2    ??? Default = 0
  1149.  1    ??? Default = 1
  1150.  0    Enable External Cache
  1151.  
  1152. (Table C0046)
  1153. Values for AWARD setup colors:
  1154.  0000  Yellow/White on Blue (Default)
  1155.  0001  Magenta/White on Blue
  1156.  0010  Yellow/Black on Green
  1157.  0011  Yellow/Green on Cyan
  1158.  0100  Black/Yellow on Cyan
  1159.  0101  Brown/White on Cyan
  1160.  0110  White/Green on Red
  1161.  0111  White/White on Red
  1162.  1000  Green/White on Magenta
  1163.  1001  Yellow/Red on Magenta
  1164.  1010  Red/White on Grey
  1165.  1011  Yellow/White on Grey
  1166.  1100  Cyan/White on Grey
  1167.  1101  Cyan/Yellow on Black
  1168.  1110  White on Black (Monochrome)
  1169.  1111  Green/Red on Black
  1170. SeeAlso: #C0045
  1171. ----------R3C--------------------------------
  1172. CMOS 3Ch - PHOENIX - Second user defined hard disk (type 48) Sectors per track
  1173. Note:    used only when PS/2 style password is NOT in effect.
  1174. ----------R3C--------------------------------
  1175. CMOS 3Ch - AWARD - Boot Configuration Bits
  1176.  
  1177. Bitfields for AWARD boot configuration bits:
  1178. Bit(s)    Description    (Table C0047)
  1179.  7    disable virus warning on boot
  1180.  6,5    ???
  1181.  4    Quick POST Enabled
  1182.  3,2    ???
  1183.  1    Enable Turbo Switch Input
  1184.  0    0 = Boot from A, then C
  1185.     1 = Boot from C, then A
  1186. ----------R3C--------------------------------
  1187. CMOS 3Ch - Quadtel HT12 BIOS 03.05.03 - TOTAL MEMORY (low byte)
  1188. SeeAlso: CMOS 3Dh"Quadtel"
  1189. ----------R3D--------------------------------
  1190. CMOS 3Dh - AWARD - ???
  1191. ----------R3D--------------------------------
  1192. CMOS 3Dh - Phoenix - ???
  1193. Note:    bit 3 = base memsize 512K/640K
  1194. ----------R3D--------------------------------
  1195. CMOS 3Dh - Quadtel HT12 BIOS 03.05.03 - TOTAL MEMORY (high byte)
  1196. SeeAlso: CMOS 3Ch"Quadtel"
  1197. ----------R3E--------------------------------
  1198. CMOS 3Eh - AMI - Extended CMOS Checksum, High Byte
  1199. Note:    this checksum covers locations 34h - 3Dh, but is not used by some
  1200.       later AMI BIOSes
  1201. ----------R3E--------------------------------
  1202. CMOS 3Eh - AWARD - BOOT CONFIGURATION BITS
  1203.  
  1204. Bitfields for AWARD boot configuration bits:
  1205. Bit(s)    Description    (Table C0048)
  1206.  7    Shadow Video BIOS at C000h
  1207.  6,5    ???
  1208.  4    Swap Floppy Drive
  1209.  3    ???
  1210.  2    Don't Halt on Diskette Errors at Boot
  1211.  1    Don't Halt on Keyboard Errors at Boot
  1212.  0    Never Halt for any error at Boot
  1213. ----------R3E--------------------------------
  1214. CMOS 3Eh - Quadtel HT12 BIOS 03.05.03 - ???
  1215.  
  1216. Bitfields for Quadtel ???:
  1217. Bit(s)    Description    (Table C0049)
  1218.  2    system error occurred ?? (timer/RTC)
  1219.  0    =0 extended system configuration loaded
  1220.     =1 checksum error
  1221. ----------R3E--------------------------------
  1222. CMOS 3Eh - Phoenix - SHADOWING CONTROL
  1223.  
  1224. Bitfields for Phoenix shadowing control:
  1225. Bit(s)    Description    (Table C0050)
  1226.  7    relocate enable
  1227.  1    shadow video enable
  1228.  0    shadow BIOS enable
  1229. ----------R3F--------------------------------
  1230. CMOS 3Fh - AMI - Extended CMOS Checksum, Low Byte
  1231. Note:    this checksum covers locations 34h - 3Dh, but is not used by some
  1232.       later AMI BIOSes
  1233. ----------R3F--------------------------------
  1234. CMOS 3Fh - AWARD - ???
  1235. ---------------------------------------------
  1236.  
  1237.  End of original 64 CMOS RAM bytes. Many modern chips now contain 128
  1238.  bytes and the IBM PS/2 has provision for 2k of "Expansion CMOS". 
  1239.  The AMI HI-FLEX description is below. If the chip does have only
  1240.  64 bytes, addresses will wrap so that requests for bytes 40h-7Fh will 
  1241.  return the same values as 00h-3Fh.
  1242.  
  1243. --------p-R40--------------------------------
  1244. CMOS 40h - AMI 1990 Hyundai super-NB368S notebook - POWER-SAVE CONFIGURATION
  1245.  
  1246. Bitfields for Hyundai power-save configuration:
  1247. Bit(s)    Description    (Table C0051)
  1248.  7    power save enabled
  1249.  6-0    HD power save wait, units of 1 minute (0-20)
  1250. ----------R40--------------------------------
  1251. CMOS 40h - AWARD - Motherboard Chipset (SiS 85C501/85C502 shown)
  1252.  
  1253. Bitfields for AWARD motherboard chipset:
  1254. Bit(s)    Description    (Table C0052)
  1255.  7-1    ???
  1256.  0    Automatic Configuration Enabled (Default: 1=enabled)
  1257. ----------R4055------------------------------
  1258. CMOS 40h-55h - AMI WinBIOS - PCI BIOS setup data
  1259. ----------R41--------------------------------
  1260. CMOS 41h - AMI - WAIT STATE CONFIGURATION
  1261.  
  1262. Bitfields for AMI wait state configuration:
  1263. Bit(s)    Description    (Table C0053)
  1264.  7-6    IOR/IOW Wait states
  1265.  5-4    16-bit DMA Wait States
  1266.  3-2    8-bit DMA Wait States
  1267.  1    EMR bit
  1268.  0    DMA Clock Source
  1269. ----------R4243------------------------------
  1270. CMOS 42h-43h - ???
  1271. ----------R4244------------------------------
  1272. CMOS 42h-44h - AWARD - ??? chipset setup ???
  1273. ----------R44--------------------------------
  1274. CMOS 44h - AMI - NMI CONTROL
  1275.  
  1276. Bitfields for AMI NMI control:
  1277. Bit(s)    Description    (Table C0054)
  1278.  4    NMI Power Fail Warning
  1279.  3    NMI Local Bus Timeout
  1280. ----------R45--------------------------------
  1281. CMOS 45h - AMI - BUS DELAYS
  1282.  
  1283. Bitfields for AMI bus delays:
  1284. Bit(s)    Description    (Table C0055)
  1285.  7-6    AT Bus 32-Bit Delay
  1286.  5-4    AT Bus 16-Bit Delay
  1287.  3-2    AT Bus 8-Bit Delay
  1288.  1-0    AT Bus I/O Delay
  1289. SeeAlso: #C0058
  1290. ----------R45--------------------------------
  1291. CMOS 45h - AMI (Saturn) - CACHE TAGS
  1292. SeeAlso: CMOS 46h"Saturn"
  1293.  
  1294. Bitfields for AMI (Saturn) cache tags:
  1295. Bit(s)    Description    (Table C0056)
  1296.  7    base memory 640K instead of 512K
  1297.  4-3    external cache tag width
  1298.     00 8 bits
  1299.     01 9 bits
  1300.     10 7 bits
  1301.     11 7 bits
  1302. ----------R45--------------------------------
  1303. CMOS 45h - AWARD - Motherboard Chipset (SiS 85C501/85C502 shown)
  1304.  
  1305. Bitfields for AWARD motherboard chipset:
  1306. Bit(s)    Description    (Table C0057)
  1307.  7    System BIOS Cacheable (Default: 1=enabled)
  1308.  6    Video BIOS Cacheable  (Default: 1=enabled)
  1309.  5-0    ???
  1310. ----------R46--------------------------------
  1311. CMOS 46h - AMI - BUS WAIT STATES
  1312.  
  1313. Bitfields for AMI bus wait states:
  1314. Bit(s)    Description    (Table C0058)
  1315.  7-6    AT Bus 32 Bit Wait States
  1316.  5-4    AT Bus 16 Bit Wait States
  1317.  3-2    AT Bus    8 Bit Wait States
  1318.  1-0    AT Bus Clock Source
  1319. SeeAlso: #C0055
  1320. ----------R46--------------------------------
  1321. CMOS 46h - AMI (Saturn) - SHADOW RAM CONTROL 1
  1322.  
  1323. Bitfields for AMI (Saturn) shadow RAM control 1:
  1324. Bit(s)    Description    (Table C0059)
  1325.  7-6    D000h-D3FFh shadow RAM
  1326.     00 don't shadow
  1327.     01 absent
  1328.     10 shadow
  1329.     11 reserved
  1330.  5-4    CC00h-CFFFh shadow RAM (as for D000h-D3FFh)
  1331.  3-2    C800h-CBFFh shadow RAM (as for D000h-D3FFh)
  1332.  1-0    C000h-C7FFh shadow RAM (as for D000h-D3FFh)
  1333. SeeAlso: #C0060
  1334. ----------R4647------------------------------
  1335. CMOS 46h-47h - AWARD - ??? chipset setup ???
  1336. ----------R47--------------------------------
  1337. CMOS 47h - AMI (Saturn) - SHADOW RAM CONTROL 2
  1338.  
  1339. Bitfields for AMI (Saturn) shadow RAM control 2:
  1340. Bit(s)    Description    (Table C0060)
  1341.  7-6    DC00h-DFFFh shadow RAM
  1342.     00 don't shadow
  1343.     01 absent
  1344.     10 shadow
  1345.     11 reserved
  1346.  5-4    D800h-DBFFh shadow RAM (as for DC00h-DFFFh)
  1347.  3-2    D400h-D7FFh shadow RAM (as for DC00h-DFFFh)
  1348.  0    PCI VGA palette snooping 
  1349. SeeAlso: #C0059
  1350. ----------R4750------------------------------
  1351. CMOS 47h-50h - ???
  1352. ----------R484F------------------------------
  1353. CMOS 48h-4Fh - AWARD - ??? unused ???  Defaults to all FFh's.
  1354. --------y-R484F------------------------------
  1355. CMOS 48h-4Fh - PhoenixBIOS A486 v1.01.E - USER PASSWORD
  1356. Desc:    stores scan-codes for the password in the first seven bytes, and the
  1357.       low byte of the password checksum in the eighth byte
  1358. SeeAlso: CMOS 50h"A486 v1.01.E"
  1359. ----------R48--------------------------------
  1360. CMOS 48h - AMI (Saturn) - EXTERNAL CACHE
  1361.  
  1362. Bitfields for AMI (Saturn) external cache:
  1363. Bit(s)    Description    (Table C0061)
  1364.  5    external cache write-back instead of write-through
  1365. ----------R49--------------------------------
  1366. CMOS 49h - AMI (Saturn) - PERFORMANCE
  1367.  
  1368. Bitfields for AMI (Saturn) performance:
  1369. Bit(s)    Description    (Table C0062)
  1370.  1    DRAM enhanced performance mode
  1371.  0    ISA/DMA enhanced performance mode
  1372. SeeAlso: #C0063
  1373. ----------R4A--------------------------------
  1374. CMOS 4Ah - AMI (Saturn) - BUS CONFIGURATION
  1375.  
  1376. Bitfields for AMI (Saturn) bus configuration:
  1377. Bit(s)    Description    (Table C0063)
  1378.  7    ISA enhanced performance mode
  1379.  6    ISA bus master installed
  1380.  5-4    PCI slot IRQ
  1381.     00 IRQ5
  1382.     01 IRQ9
  1383.     10 IRQ15
  1384.     11 IRQ15
  1385.  3    PCI on-board SCSI controller enabled
  1386.  1-0    ISA frame buffer
  1387.     00 disabled
  1388.     01 1MB at 15MB
  1389.     10 2MB at 14MB
  1390.     11 4MB at 12MB
  1391. SeeAlso: #C0062
  1392. ----------R4B--------------------------------
  1393. CMOS 4Bh - AMI (Saturn) - ON-BOARD PERIPHERALS
  1394.  
  1395. Bitfields for AMI (Saturn) on-board peripherals:
  1396. Bit(s)    Description    (Table C0064)
  1397.  4    onboard FDC enabled
  1398.  0    onboard IDE enabled
  1399. ----------R4C--------------------------------
  1400. CMOS 4Ch - AMI (Saturn) - PARALLEL PORT
  1401.  
  1402. Bitfields for AMI (Saturn) parallel port:
  1403. Bit(s)    Description    (Table C0065)
  1404.  4    IRQ active high
  1405.  3    parallel port extended mode
  1406.  1-0    parallel port address
  1407. ----------R4C--------------------------------
  1408. CMOS 4Ch - AMI (PicoPower) - CLOCK SPEEDS
  1409.  
  1410. Bitfields for AMI (PicoPower) clock speeds:
  1411. Bit(s)    Description    (Table C0066)
  1412.  7-6    back-to-back I/O delay
  1413.     00  none
  1414.     01  1 SYSCLK
  1415.     10  2 SYSCLKs
  1416.     11  3 SYSCLKs
  1417.  5-3    Turbo clock select
  1418.     001 CLK2IN/3
  1419.     010 CLK2IN/4
  1420.     011 CLK2IN/5
  1421.     100 CLK2IN/6
  1422.     101 CLK2IN/7
  1423.     110 CLK2IN/8
  1424.     111 CLK2IN/9
  1425.  2-0    SYSCLK select (same as for Turbo clock select)
  1426. ----------R4D--------------------------------
  1427. CMOS 4Dh - AMI (Saturn) - RESERVED
  1428. ----------R4D--------------------------------
  1429. CMOS 4Dh - AMI (PicoPower) - MIDDLE BIOS
  1430. Note:    Middle BIOS is enabled if bit 1 set
  1431. --------y-R4D--------------------------------
  1432. CMOS 4Dh - AWARD - USER PASSWORD
  1433. SeeAlso: CMOS 4Eh"AWARD",CMOS 1Ch"AWARD"
  1434. ----------R4E--------------------------------
  1435. CMOS 4Eh - AMI (Saturn) - SERIAL PORT
  1436.  
  1437. Bitfields for AMI (Saturn) serial port:
  1438. Bit(s)    Description    (Table C0067)
  1439.  7-5    serial port 1
  1440.  4-2    serial port 2
  1441.  0    manual programming mode
  1442. ----------R4E--------------------------------
  1443. CMOS 4Eh - AMI (PicoPower) - TURBO BUS VIDEO
  1444.  
  1445. Bitfields for AMI (PicoPower) Turbo Bus video:
  1446. Bit(s)    Description    (Table C0068)
  1447.  2    memory enabled
  1448.  1    I/O enabled
  1449. --------y-R4E--------------------------------
  1450. CMOS 4Eh - AWARD - USER PASSWORD
  1451. SeeAlso: CMOS 4Dh"AWARD",CMOS 1Ch"AWARD"
  1452. ----------R50--------------------------------
  1453. CMOS 50h - AWARD - PCI Bus Slot 1 Latency Timer 0-255 (default: 0)
  1454. --------y-R5057------------------------------
  1455. CMOS 50h-57h - PhoenixBIOS A486 v1.01.E - ADMIN PASSWORD
  1456. Desc:    stores scan-codes for the password in the first seven bytes, and the
  1457.       low byte of the password checksum in the eighth byte
  1458. SeeAlso: CMOS 48h"A486 v1.01.E"
  1459. ----------R51--------------------------------
  1460. CMOS 51h - AMI - MEMORY ACCESS CONTROL
  1461.  
  1462. Bitfields for AMI memory access control:
  1463. Bit(s)    Description    (Table C0069)
  1464.  7    Bank 0/1 RAS Precharge
  1465.  6    Bank 0/1 Access Wait States
  1466.  3-2    Bank 0/1 Wait States
  1467. ----------R51--------------------------------
  1468. CMOS 51h - AWARD - PCI Bus Setup
  1469.  
  1470. Bitfields for AWARD PCI bus setup:
  1471. Bit(s)    Description    (Table C0070)
  1472.  7    PIRQ0# Interrupt Triggering
  1473.     0 = Edge Sensitive,
  1474.     1 = Level Sensitive
  1475.  6-2    ??? Default: all 1's
  1476.  0-1    Slot 1 IRQ Setup
  1477.     00 = A-PIRQ0 (Default)
  1478.     01 = B-PIRQ1
  1479.     10 = C-PIRQ2
  1480.     11 = D-PIRQ3
  1481. ----------R52--------------------------------
  1482. CMOS 52h - ???
  1483. ----------R52--------------------------------
  1484. CMOS 52h - AWARD - PCI Bus Slot 2 Latency Timer 0-255 (default: 0)
  1485. ----------R53--------------------------------
  1486. CMOS 53h - AMI - MEMORY ACCESS CONTROL
  1487.  
  1488. Bitfields for AMI memory access control:
  1489. Bit(s)    Description    (Table C0071)
  1490.  7    Bank 2/3 RAS Precharge
  1491.  6    Bank 2/3 Access Wait States
  1492.  3-2    Bank 2/3 Wait States
  1493. ----------R53--------------------------------
  1494. CMOS 53h - AWARD - PCI Bus Setup
  1495.  
  1496. Bitfields for AWARD PCI bus setup:
  1497. Bit(s)    Description    (Table C0072)
  1498.  7    PIRQ1# Interrupt Triggering
  1499.     0 = Edge Sensitive,
  1500.     1 = Level Sensitive
  1501.  6-2    ??? Default: all 1's
  1502.  0-1    Slot 2 IRQ Setup
  1503.     00 = A-PIRQ1 (Default)
  1504.     01 = B-PIRQ2
  1505.     10 = C-PIRQ3
  1506.     11 = D-PIRQ0
  1507. --------p-R53--------------------------------
  1508. CMOS 53h - AWARD v4.51PG APM - APM FUNCTION CONFIGURATION FOR ATX POWER SUPPLY
  1509. SeeAlso: CMOS 54h"v4.51PG"
  1510.  
  1511. Bitfields for AWARD v4.51PG ATX Power Supply Configuration #1:
  1512. Bit(s)    Description    (Table C0073)
  1513.  7    power button override enabled
  1514.  6-2    ???
  1515.  1    VGA is active monitor
  1516.  0    ???
  1517. SeeAlso: #C0074
  1518. ----------R547F------------------------------
  1519. CMOS 54h-7Fh - ???
  1520. ----------R54--------------------------------
  1521. CMOS 54h - AWARD - PCI Bus Slot 3 Latency Timer 0-255 (default: 0)
  1522. --------p-R54--------------------------------
  1523. CMOS 54h - AWARD v4.51PG APM - APM FUNCTION CONFIGURATION FOR ATX POWER SUPPLY
  1524. SeeAlso: CMOS 53h"v4.51PG"
  1525.  
  1526. Bitfields for AWARD v4.51PG ATX Power Supply Configuration #2:
  1527. Bit(s)    Description    (Table C0074)
  1528.  7-2    ???
  1529.  1    enable Resume on Ring 
  1530.  0    enable Resume on Alarm
  1531. SeeAlso: #C0073
  1532. ----------R55--------------------------------
  1533. CMOS 55h - AWARD - PCI Bus Setup
  1534.  
  1535. Bitfields for AWARD PCI bus setup:
  1536. Bit(s)    Description    (Table C0075)
  1537.  7    PIRQ2# Interrupt Triggering
  1538.     0 = Edge Sensitive,
  1539.     1 = Level Sensitive
  1540.  6-2    ??? Default: all 1's
  1541.  0-1    Slot 3 IRQ Setup
  1542.     00 = A-PIRQ2 (Default)
  1543.     01 = B-PIRQ3
  1544.     10 = C-PIRQ0
  1545.     11 = D-PIRQ1
  1546. --------p-R55--------------------------------
  1547. CMOS 55h - AWARD v4.51PG - APM - POWER-ON DAY OF MONTH (Resume by Alarm)
  1548. Note:    value is binary, rather than BCD as for most calendar functions
  1549. SeeAlso: CMOS 56h"v4.51PG",CMOS 57h"v4.51PG"
  1550. ----------R56--------------------------------
  1551. CMOS 56h - AWARD - ??? reserved for PCI Bus Slot 4 Latency Timer ???
  1552. --------p-R56--------------------------------
  1553. CMOS 56h - AWARD v4.51PG - APM - POWER-ON HOUR (Resume by Alarm)
  1554. Note:    value is binary, rather than BCD as for most calendar functions
  1555. SeeAlso: CMOS 55h"v4.51PG",CMOS 57h"v4.51PG"
  1556. ----------R57--------------------------------
  1557. CMOS 57h - AWARD - PCI Bus Setup
  1558.  
  1559. Bitfields for AWARD PCI bus setup:
  1560. Bit(s)    Description    (Table C0076)
  1561.  7    PIRQ3# Interrupt Triggering
  1562.     0 = Edge Sensitive,
  1563.     1 = Level Sensitive
  1564.  6-0    ???not used    Default: all 1's
  1565. --------p-R57--------------------------------
  1566. CMOS 57h - AWARD v4.51PG - APM - POWER-ON MINUTE (Resume by Alarm)
  1567. Note:    value is binary, rather than BCD as for most calendar functions
  1568. SeeAlso: CMOS 56h"v4.51PG",CMOS 58h"v4.51PG"
  1569. ----------R58--------------------------------
  1570. CMOS 58h - AWARD - ??? reserved for PCI Bus Slot 5 Latency Timer ???
  1571.  
  1572. Bitfields for AWARD PCI bus slot 5 latency timer:
  1573. Bit(s)    Description    (Table C0077)
  1574.  3    onboard CMD IDE Mode 3
  1575. --------p-R58--------------------------------
  1576. CMOS 58h - AWARD v4.51PG - APM - POWER-ON SECOND (Resume by Alarm)
  1577. Note:    value is binary, rather than BCD as for most calendar functions
  1578. SeeAlso: CMOS 55h"v4.51PG",CMOS 57h"v4.51PG"
  1579. ----------R59--------------------------------
  1580. CMOS 59h - AWARD - ??? reserved for PCI Bus Setup ???
  1581. ----------R5A--------------------------------
  1582. CMOS 5Ah - AWARD - PCI Bus IRQ Setup 1
  1583.  
  1584. Bitfields for AWARD PCI bus IRQ setup 1:
  1585. Bit(s)    Description    (Table C0078)
  1586.  4-7    PIRQ1# Interrupt Line (0=none, Bh=IRQ11, etc)
  1587.  0-3    PIRQ0# Interrupt Line      "         "          "
  1588. ----------R5B--------------------------------
  1589. CMOS 5Bh - AWARD - PCI Bus IRQ Setup 2
  1590.  
  1591. Bitfields for AWARD PCI bus IRQ setup 2:
  1592. Bit(s)    Description    (Table C0079)
  1593.  4-7    PIRQ3# Interrupt Line (0=none, Bh=IRQ11, etc)
  1594.  0-3    PIRQ2# Interrupt Line      "         "          "
  1595. ----------R5C--------------------------------
  1596. CMOS 5Ch - AMI (PicoPower) - LOW-SPEED CLOCK
  1597.  
  1598. Bitfields for AMI (PicoPower) low-speed clock select:
  1599. Bit(s)    Description    (Table C0080)
  1600.  2-0    low-speed clock divisor
  1601.     000  /1
  1602.     001  /2
  1603.     010  /4
  1604. ----------R5C5F------------------------------
  1605. CMOS 5Ch-5Fh - AWARD - ??? unused ???
  1606. Note:    Defaults to all FFh's.
  1607. --------p-R5D--------------------------------
  1608. CMOS 5Dh - AMI (PicoPower) - DOZE MODE
  1609.  
  1610. Bitfields for AMI (PicoPower) doze mode control:
  1611. Bit(s)    Description    (Table C0081)
  1612.  7    APM enabled
  1613.  6-4    doze mode CPU clock speed (see #C0082)
  1614.  3    hotkey setup enabled
  1615.  2-0    "sleep mode" CPU CLK speed (see #C0082)
  1616. SeeAlso: #C0084
  1617.  
  1618. (Table C0082)
  1619. Values for AMI (PicoPower) CPU clock speeds:
  1620.  000    MAX
  1621.  001    MAX/2
  1622.  010    MAX/4
  1623.  011    MAX/8
  1624.  100    MAX/16
  1625.  101    MAX/32
  1626.  110    MAX/64
  1627. SeeAlso: #C0081,#C0084
  1628. ----------R5E--------------------------------
  1629. CMOS 5Eh - AMI 1990 Hyundai super-NB368S notebook - ???
  1630.     00h when values from bios defaults
  1631.     34h when values from power up defaults
  1632. ----------R5E--------------------------------
  1633. CMOS 5Eh - AWARD v4.50G - ?
  1634. SeeAlso: CMOS 5Fh"AWARD"
  1635.  
  1636. Bitfields for AWARD register 5Eh:
  1637. Bit(s)    Description    (Table C0083)
  1638.  0    user password enabled
  1639. SeeAlso: #C0012
  1640. --------p-R5E--------------------------------
  1641. CMOS 5Eh - AMI (PicoPower) - CPU SPEEDS
  1642.  
  1643. Bitfields for AMI (PicoPower) CPU speeds:
  1644. Bit(s)    Description    (Table C0084)
  1645.  7    suspend warning beeps enabled
  1646.  6-4    "full on" CPU CLK speed
  1647.     000 MAX
  1648.     001 MAX/2
  1649.     010 MAX/4
  1650.     011 MAX/8
  1651.  1-0    power management mode
  1652.     00 disabled
  1653.     01 Auto
  1654.     10 enabled
  1655. SeeAlso: #C0081
  1656. --------p-R5F--------------------------------
  1657. CMOS 5Fh - AMI (PicoPower) - POWER MANAGEMENT TIMEOUTS
  1658.  
  1659. Bitfields for AMI (PicoPower) power management timeouts:
  1660. Bit(s)    Description    (Table C0085)
  1661.  7    enable battery-low beeps
  1662.  5-3    SUSPEND timeout
  1663.     000  disabled
  1664.     001  5 minutes
  1665.     010  10 minutes
  1666.     011  15 minutes
  1667.     100  20 minutes
  1668.     101  30 minutes
  1669.     110  40 minutes
  1670.     111  60 minutes
  1671.  2-0    DOZE timeout
  1672.     000  disabled
  1673.     100  1 second
  1674.     101  4 seconds
  1675.     110  8 seconds
  1676.     111  16 seconds
  1677. SeeAlso: #C0087
  1678. --------y-R5F--------------------------------
  1679. CMOS 5Fh - AWARD v4.50G - USER PASSWORD CHECKSUM
  1680. SeeAlso: CMOS 5Eh"AWARD"
  1681. --------p-R60--------------------------------
  1682. CMOS 60h - AWARD - POWER MANAGEMENT
  1683.  
  1684. Bitfields for AWARD power management:
  1685. Bit(s)    Description    (Table C0086)
  1686.  7    ???
  1687.  6    Video Off Method
  1688.     1  = V/H SYNC + Blank (default)
  1689.     0  = Blank Screen
  1690.  4,5    Video Off Option
  1691.     00 = Always On (default)
  1692.     01 = Suspend -> Off
  1693.     10 = Suspend, Standby -> Off
  1694.     11 = All Modes -> Off
  1695.  3    PM Control by APM (1=Yes)
  1696.  2    ???
  1697.  1,0    Power Management Setup
  1698.     00  User Defined
  1699.     01  Disabled (default)
  1700.     10  Minimum Power Savings (40 Minutes for all events)
  1701.     11  Maximum Power Savings (20 Seconds for all events)
  1702. --------p-R60--------------------------------
  1703. CMOS 60h - AMI (PicoPower) - SLEEP TIMEOUT
  1704.  
  1705. Bitfields for AMI (PicoPower) sleep timeout:
  1706. Bit(s)    Description    (Table C0087)
  1707.  5-3    SLEEP timeout
  1708.     000  disabled
  1709.     001  1 minute
  1710.     010  2 minutes
  1711.     011  3 minutes
  1712.     100  4 minutes
  1713.     101  6 minutes
  1714.     110  8 minutes
  1715.     111  12 minutes
  1716. SeeAlso: #C0085,#C0089
  1717. ----------R6077------------------------------
  1718. CMOS 60h-77h - AMI WinBIOS - PCI chipset-specific setup information
  1719. --------p-R61--------------------------------
  1720. CMOS 61h - AWARD - POWER MANAGEMENT
  1721.  
  1722. Bitfields for AWARD power management:
  1723. Bit(s)    Description    (Table C0088)
  1724.  7    PM Event on HDD Ports Activity (1=enable)
  1725.  6    PM Event on LPT Port Activity (1=enable)
  1726.  5    PM Event on COM Port Activity (1=enable)
  1727.  4    HDD Power Down on Suspend
  1728.  0-3    HDD Power Down Time
  1729.     0    Disabled
  1730.     1-15    Time in Minutes
  1731. ----------R62--------------------------------
  1732. CMOS 62h - AMI 1990 Hyundai super-NB368S notebook - ???
  1733.     FFh when values from bios defaults
  1734.     FEh when values from power up defaults
  1735. ----------R62--------------------------------
  1736. CMOS 62h - AMI (Neptune) - number of last PCI bus in system
  1737. SeeAlso: INT 1A/AX=B101h
  1738. --------p-R62--------------------------------
  1739. CMOS 62h - AMI (PicoPower) - HARD-DISK POWERDOWN
  1740.  
  1741. Bitfields for AMI (PicoPower) hard-disk powerdown timeout:
  1742. Bit(s)    Description    (Table C0089)
  1743.  3-0    hard-disk timeout in minutes (0000 = disabled)
  1744. SeeAlso: #C0087
  1745. --------p-R62--------------------------------
  1746. CMOS 62h - AWARD - POWER MANAGEMENT
  1747.  
  1748. Bitfields for AWARD power management:
  1749. Bit(s)    Description    (Table C0090)
  1750.  7-4    Standby Mode Setting (for User Defined)
  1751.     0   Disabled
  1752.     1   20 Seconds
  1753.     2   1 Minute
  1754.     3   5 Minutes
  1755.     4   10 Minutes
  1756.     5   15 Minutes
  1757.     6   20 Minutes
  1758.     7   30 Minutes
  1759.     8   40 Minutes
  1760.  0-3    Doze Mode Setting (for User Defined)
  1761.     (See Standby Mode above)
  1762. ----------R62--------------------------------
  1763. CMOS 62h - AWARD v4.51pg - BIT FLAGS
  1764.  
  1765. Bitfields for AWARD v4.51pg CMOS 62h:
  1766. Bit(s)    Description    (Table C0091)
  1767.  0    user password is enabled
  1768. --------p-R63--------------------------------
  1769. CMOS 63h - AWARD - POWER MANAGEMENT
  1770.  
  1771. Bitfields for AWARD power management:
  1772. Bit(s)    Description    (Table C0092)
  1773.  7    Disable PM Event on IRQ3 Activity (COM2) (1=disable)
  1774.  6    PM Event on VGA Activity (1=enable)
  1775.  5    ??? (Defaults to 1)
  1776.  4    PM Event on PCI/ISA Master Activity (1=enable)
  1777.  0-3    Suspend Mode Setting (for User Defined)
  1778.     (See Standby Mode above)
  1779. --------p-R63--------------------------------
  1780. CMOS 63h - AMI (PicoPower) - BATTERY-LOW ACTIONS
  1781.  
  1782. Bitfields for AMI (PicoPower) battery-low actions:
  1783. Bit(s)    Description    (Table C0093)
  1784.  5-3    battery-very-low action
  1785.     000  MAX
  1786.     001  MAX/2
  1787.     010  MAX/4
  1788.     011  MAX/8
  1789.     100  MAX/16
  1790.     101  MAX/32
  1791.     110  MAX/64
  1792.     111  suspend
  1793.  2-0    battery-low action (same as battery-very-low action)
  1794. ----------R64--------------------------------
  1795. CMOS 64h - AMI 1990 Hyundai super-NB368S notebook - ???
  1796. --------p-R64--------------------------------
  1797. CMOS 64h - AMI (PicoPower) - BATTERY POWER
  1798.  
  1799. Bitfields for AMI (PicoPower) battery power:
  1800. Bit(s)    Description    (Table C0094)
  1801.  6    extended battery debounce enabled
  1802.  4-3    resume with modem ring
  1803.     00 disabled
  1804.     01 one ring
  1805.     10 two rings
  1806.     11 three rings
  1807.  2    365SL power on during suspend
  1808.  1-0    suspend-mode DRAM refresh cycle
  1809.     00 15 usec
  1810.     01 120 usec (1/8 normal)
  1811.     10 self
  1812. --------p-R64--------------------------------
  1813. CMOS 64h - AWARD - POWER MANAGEMENT - IRQ activity events #1
  1814. SeeAlso: CMOS 65h"AWARD"
  1815.  
  1816. Bitfields for AWARD power management IRQ activity events:
  1817. Bit(s)    Description    (Table C0095)
  1818.  7    Disable PM Event on IRQ11 Activity (1=disable)
  1819.  6    Disable PM Event on IRQ10 Activity (1=disable)
  1820.  5    Disable PM Event on IRQ9 Activity (IRQ2 Redir) (1=disable)
  1821.  4    Disable PM Event on IRQ8 Activity (RTC Alarm) (1=disable)
  1822.  3    Disable PM Event on IRQ7 Activity (LPT1) (1=disable)
  1823.  2    Disable PM Event on IRQ6 Activity (Floppy) (1=disable)
  1824.  1    Disable PM Event on IRQ5 Activity (LPT2) (1=disable)
  1825.  0    Disable PM Event on IRQ4 Activity (COM1) (1=disable)
  1826. --------p-R65--------------------------------
  1827. CMOS 65h - AWARD - POWER MANAGEMENT - IRQ activity events #2
  1828. SeeAlso: CMOS 64h"AWARD"
  1829.  
  1830. Bitfields for AWARD power management:
  1831. Bit(s)    Description    (Table C0096)
  1832.  7-4    ??? may be unused.  Defaults to all 1's
  1833.  3    Disable PM Event on IRQ15 Activity (1=disable)
  1834.  2    Disable PM Event on IRQ14 Activity (Hard Disk) (1=disable)
  1835.  1    Disable PM Event on IRQ13 Activity (Coprocessor) (1=disable)
  1836.  0    Disable PM Event on IRQ12 Activity (PS/2 Mouse) (1=disable)
  1837. ----------R65--------------------------------
  1838. CMOS 65h - AMI (PicoPower) - PC PIN STAGGER
  1839.  
  1840. Bitfields for AMI (PicoPower) PC pin stagger:
  1841. Bit(s)    Description    (Table C0097)
  1842.  7-6    PC pin stagger period
  1843.     00  immediate
  1844.     01  4 msec
  1845.     10  16 msec
  1846.     11  64 msec
  1847. --------p-R66--------------------------------
  1848. CMOS 66h - AMI 1990 Hyundai super-NB368S notebook - DOZE MODE TIMEOUT
  1849. Note:    doze mode timeout 00-0F, from table (0,12 -14 sec)
  1850. ----------R6679------------------------------
  1851. CMOS 66h-79h - AWARD - ??? unused ???
  1852. Note:    Defaults to all FFh's.
  1853. ----------R67--------------------------------
  1854. CMOS 67h - AMI 1990 Hyundai super-NB368S notebook - SLEEP MODE TIMEOUT
  1855. Desc:    sleep mode timeout 00-0F, units of 1 second
  1856. ----------R68--------------------------------
  1857. CMOS 68h - AMI 1990 Hyundai super-NB368S notebook - SUSPEND MODE TIMEOUT
  1858. Desc:    suspend mode timeout 01-0F, units of 5 minutes
  1859. ----------R686F------------------------------
  1860. CMOS 68h-6Fh - AWARD - IDE hard disk params for first drive on second IDE port
  1861. ----------R69--------------------------------
  1862. CMOS 69h - AMI 1990 Hyundai super-NB368S notebook - LCD MODE TIMEOUT
  1863. Desc:    LCD mode timeout 01-0F, units of 1 minute
  1864. ----------R6A--------------------------------
  1865. CMOS 6Ah - AMI 1990 Hyundai super-NB368S notebook - ???
  1866. ----------R7077------------------------------
  1867. CMOS 70h-77h - AWARD - IDE hard disk params for second drive on second IDE port
  1868. ----------R787D------------------------------
  1869. CMOS 78h-7Dh - AMI WinBIOS - used by BIOS as scratch RAM
  1870. ----------R7A--------------------------------
  1871. CMOS 7Ah - AWARD - EXTENDED CMOS CHECKSUM (high byte)
  1872. Note:    Award's extended checksum is the arithmetic sum of all the bytes
  1873.       from 40h (64 decimal) through 79h (121 decimal). [42h-79h for v4.50G]
  1874. SeeAlso: CMOS 7Bh"AWARD"
  1875. ----------R7B--------------------------------
  1876. CMOS 7Bh - AWARD - EXTENDED CMOS CHECKSUM (low byte)
  1877. Note:    Award's extended checksum is the arithmetic sum of all the bytes
  1878.       from 40h (64 decimal) through 79h (121 decimal). [42h-79h for v4.50G]
  1879. SeeAlso: CMOS 7Ah"AWARD"
  1880. ----------R7D--------------------------------
  1881. CMOS 7Dh - AMD-645 Clock - DATE ALARM
  1882. Desc:    on an AMD-645, this byte specifies the day of the month on which
  1883.       the alarm will activate
  1884. SeeAlso: CMOS 01h,CMOS 03h,CMOS 05h,CMOS 7Eh
  1885. ----------R7E--------------------------------
  1886. CMOS 7Eh - AMD-645 Clock - MONTH ALARM
  1887. Desc:    on an AMD-645, this byte specifies the month of the year on which
  1888.       the alarm will activate
  1889. SeeAlso: CMOS 01h,CMOS 03h,CMOS 05h,CMOS 7Dh
  1890. --------p-R7E7F------------------------------
  1891. CMOS 7Eh-7Fh - AMI WinBIOS - used as scratch RAM by power management code
  1892. ----------R7F--------------------------------
  1893. CMOS 7Fh - AMD-645 Clock - CENTURY
  1894. SeeAlso: CMOS 32h
  1895. ---------------------------------------------
  1896.  
  1897. From arhfond@online.ru Thu Sep    5 21:17:13 1996
  1898. Date: Wed, 28 Aug 1996 22:35:17 +0400
  1899. From: Agapov Vasiliy Pavlovich <arhfond@online.ru>
  1900. To: ralf@telerama.lm.com
  1901. Subject: Re: Ralf Brown's Interrupt List Release 42.
  1902.  
  1903. The problem with CMOS checksum layout for the new motherboards (1995-1996)
  1904. with AWARD, AMIBIOS (also AMIBIOS on Pentium motherboards produced beyond
  1905. 1992) and several others is the following: they have added the second checksum
  1906. for the CMOS area from 40h to 7Ch. Any changes in the area concerned, always
  1907. result in "CMOS checksum failure. Defaults loaded...".
  1908.  
  1909. The problem is that every model of BIOS has its own location of the second
  1910. checksum and its own way of determining it. When you need to change some bytes
  1911. in the area from 40h to 7Ch you ought to determine checksum location. Here's
  1912. the Assembly code that finds out the location of the second CMOS checksum on
  1913. ANY motherboard. I've tested it on more than 10 different motherboards with
  1914. AMIBIOS and AWARD BIOS and it never failed.
  1915.  
  1916.     Before starting this code make sure to load the 128 bytes of CMOS
  1917. data to the buffer at CMOS_DATA and assume DS as data area segment register.
  1918.  
  1919. START:    CALL    WHAT_CMOS
  1920.     JC    NO_SECOND_CHS
  1921.  
  1922. ; Checksum location is in word at  CHECKS_ADDRESS
  1923.  
  1924. NO_SECOND_CHS:
  1925.  
  1926. ; There's no second checksum in this CMOS
  1927.  
  1928. END:
  1929.  
  1930. ;******************************* SUBS **********************************
  1931.  
  1932. WHAT_CMOS:    MOV    SI,OFFSET CMOS_DATA+40H
  1933.         MOV    DI,OFFSET CMOS_DATA+7EH
  1934.         CALL    FIND_CMOS_CHS
  1935.         JNC    END_WCMOS
  1936.         MOV    SI,OFFSET CMOS_DATA+41H
  1937.         MOV    DI,OFFSET CMOS_DATA+7EH
  1938.         CALL    FIND_CMOS_CHS
  1939. END_WCMOS:    RET
  1940.  
  1941.  
  1942. FIND_CMOS_CHS:    XOR    DX,DX
  1943.         MOV    AX,DX
  1944. FIND_CMOS_C1:    LODSB            ; GET BYTE
  1945.         ADD    DX,AX
  1946.         CMP    SI,OFFSET CMOS_DATA+7CH    ; ADDRESS OF CHECKSUM ?
  1947.         JB    FIND_CMOS_C1
  1948.         XCHG    DH,DL
  1949.         CMP    DX,[SI]        ; CHECKSUM FOUND ?
  1950.         JZ    END_FCMOS
  1951.         XCHG    DH,DL
  1952.         CMP    SI,DI
  1953.         JB    FIND_CMOS_C1
  1954.         STC
  1955.         RET
  1956. END_FCMOS:    MOV    [CHECKS_ADDRESS],SI    ; SAVE CHECKSUM POSITION
  1957.         CLC
  1958.         RET
  1959.  
  1960. ******************************** DATA *******************************
  1961.  
  1962. CHECKS_ADDRESS    DW    0
  1963.  
  1964. CMOS_DATA    DB   128 DUP (?)
  1965.                                         
  1966.       Regards,
  1967.         Alexey Podrezov
  1968.         28.08.1996
  1969. --------!---Admin----------------------------
  1970. Highest Table Number = C0097
  1971. --------!---History--------------------------
  1972. Revision History
  1973.  
  1974. v1.26    Sep,  1995    reformatted (Ralf)
  1975. v1.25    June  1995    Added AMI WinBIOS info from Daniel Miller (Ralf)
  1976. v1.24    Jan,  1995    Added Award info from Tim Farley (Ralf)
  1977. v1.23    June, 1994    Added some MCA info from _The_Undocumented_PC_
  1978. v1.22    Feb,  1994    Added NMI mask note
  1979. v1.21    Jan,  1994    Added note for PS/2 checksum found
  1980. v1.20    Sept, 1993    PHOENIX data from Wim Osterholt added
  1981.             additional AMI data from Howie (hjh@gwd.dst.gov.au)
  1982. v1.15    June, 1993    AMSTRAD data updated
  1983. v1.1    June, 1993    AMSTRAD & PS/2 data added 
  1984. v1.0    June, 1993    First release: Motorola MC 146818,  PC-AT & AMI 
  1985.             "Hi-Flex" information baselined
  1986. --------!---CONTACT_INFO---------------------
  1987. Internet: ralf@pobox.com (currently forwards to ralf@telerama.lm.com)
  1988. FIDO: Ralf Brown 1:129/26.1
  1989.